Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
The Codacy Badger 0e8dd623ae Add Codacy badge vor 7 Jahren
audio Restructure to standard maven/gradle layout. vor 7 Jahren
awaycolours Migrate to new @GlobalConfig annotation. vor 7 Jahren
calc Minor style fixes vor 7 Jahren
channelwho Migrate to new @GlobalConfig annotation. vor 7 Jahren
conditional_execute Use EventBus interface. vor 7 Jahren
contactlist Use EventBus interface. vor 7 Jahren
dcc Minor style fixes vor 7 Jahren
dcop Restructure to standard maven/gradle layout. vor 7 Jahren
debug Migrate to new @GlobalConfig annotation. vor 7 Jahren
dns Restructure to standard maven/gradle layout. vor 7 Jahren
etc/pmd Enable PMD for plugins. vor 9 Jahren
exec Restructure to standard maven/gradle layout. vor 7 Jahren
freedesktop_notifications Minor style fixes vor 7 Jahren
gradle Update gradle to 3.1. vor 7 Jahren
identd Migrate to new @GlobalConfig annotation. vor 7 Jahren
jpq Use EventBus interface. vor 7 Jahren
lagdisplay Migrate to new @GlobalConfig annotation. vor 7 Jahren
logging Migrate to new @UserConfig annotation. vor 7 Jahren
mediasource_dbus Restructure to standard maven/gradle layout. vor 7 Jahren
mediasource_dcop Restructure to standard maven/gradle layout. vor 7 Jahren
mediasource_linux_title Restructure to standard maven/gradle layout. vor 7 Jahren
mediasource_mplayer Restructure to standard maven/gradle layout. vor 7 Jahren
mediasource_vlc Restructure to standard maven/gradle layout. vor 7 Jahren
mediasource_windows Restructure to standard maven/gradle layout. vor 7 Jahren
nickcolours Minor style fixes vor 7 Jahren
nickkeep Use EventBus interface. vor 7 Jahren
nma Restructure to standard maven/gradle layout. vor 7 Jahren
notifications Migrate to new @GlobalConfig annotation. vor 7 Jahren
nowplaying Minor style fixes vor 7 Jahren
osd Use EventBus interface. vor 7 Jahren
osx_integration Restructure to standard maven/gradle layout. vor 7 Jahren
parser_irc Restructure to standard maven/gradle layout. vor 7 Jahren
parser_xmpp Restructure to standard maven/gradle layout. vor 7 Jahren
parserdebug Use EventBus interface. vor 7 Jahren
qauth Migrate to new @GlobalConfig annotation. vor 7 Jahren
redirect Use EventBus interface. vor 7 Jahren
scriptplugin Migrate to new @GlobalConfig annotation. vor 7 Jahren
sessionlock Restructure to standard maven/gradle layout. vor 7 Jahren
systray Migrate to new @GlobalConfig annotation. vor 7 Jahren
tabcompletion_bash Restructure to standard maven/gradle layout. vor 7 Jahren
tabcompletion_mirc Minor style fixes vor 7 Jahren
time Use EventBus interface. vor 7 Jahren
ui_swing Minor style fixes vor 7 Jahren
ui_web2 Migrate to new @GlobalConfig annotation. vor 7 Jahren
whoisonquery Use EventBus interface. vor 7 Jahren
windowflashing Migrate to new @GlobalConfig annotation. vor 7 Jahren
windowstatus Migrate to new @GlobalConfig annotation. vor 7 Jahren
.gitignore Restructure to standard maven/gradle layout. vor 7 Jahren
.gitreview Add .gitreview config. vor 9 Jahren
AUTHORS Fix LICENCE file name and add AUTHORS file. vor 10 Jahren
LICENCE 2015! vor 9 Jahren
README.md Add Codacy badge vor 7 Jahren
build-configutils.xml Apparently some OSes use different line endings - who knew? vor 12 Jahren
build-pluginutils.xml Add new build util files for extracting info from and bundling plugins vor 13 Jahren
build.gradle Rename custom jar and test tasks in plugins. vor 7 Jahren
build.xml Collect plugin jars in dist folder, like before. vor 9 Jahren
circle.yml Rename custom jar and test tasks in plugins. vor 7 Jahren
gradlew Update gradle to 3.1. vor 7 Jahren
gradlew.bat Update gradle to 3.1. vor 7 Jahren
settings.gradle Actually include plugins again. vor 7 Jahren

README.md

DMDirc plugins

Codacy Badge

This repository contains plugins for DMDirc, a Java IRC client.

Development information

Gradle configurations

We have two custom configurations for use when defining plugin dependencies:

The bundle configuration allows dependencies to be bundled together into the plugin’s jar file. This should be used for dependencies required at runtime that are not included in the main DMDirc client, or accessed via other plugins. Most of a plugin’s dependencies should end up in the bundle configuration.

The provided configuration works like the Maven ‘provided’ scope. It defines dependencies required to compile and run the plugin that will be provided to it somehow externally. Anything in the provided configuration (including transitive dependencies) will not be bundled into the plugin jar. The provided configuration is used for the main DMDirc client, and should be used for any intra-plugin dependencies.