Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
The Codacy Badger 0e8dd623ae Add Codacy badge před 7 roky
audio Restructure to standard maven/gradle layout. před 7 roky
awaycolours Migrate to new @GlobalConfig annotation. před 7 roky
calc Minor style fixes před 7 roky
channelwho Migrate to new @GlobalConfig annotation. před 7 roky
conditional_execute Use EventBus interface. před 7 roky
contactlist Use EventBus interface. před 7 roky
dcc Minor style fixes před 7 roky
dcop Restructure to standard maven/gradle layout. před 7 roky
debug Migrate to new @GlobalConfig annotation. před 7 roky
dns Restructure to standard maven/gradle layout. před 7 roky
etc/pmd Enable PMD for plugins. před 9 roky
exec Restructure to standard maven/gradle layout. před 7 roky
freedesktop_notifications Minor style fixes před 7 roky
gradle Update gradle to 3.1. před 7 roky
identd Migrate to new @GlobalConfig annotation. před 7 roky
jpq Use EventBus interface. před 7 roky
lagdisplay Migrate to new @GlobalConfig annotation. před 7 roky
logging Migrate to new @UserConfig annotation. před 7 roky
mediasource_dbus Restructure to standard maven/gradle layout. před 7 roky
mediasource_dcop Restructure to standard maven/gradle layout. před 7 roky
mediasource_linux_title Restructure to standard maven/gradle layout. před 7 roky
mediasource_mplayer Restructure to standard maven/gradle layout. před 7 roky
mediasource_vlc Restructure to standard maven/gradle layout. před 7 roky
mediasource_windows Restructure to standard maven/gradle layout. před 7 roky
nickcolours Minor style fixes před 7 roky
nickkeep Use EventBus interface. před 7 roky
nma Restructure to standard maven/gradle layout. před 7 roky
notifications Migrate to new @GlobalConfig annotation. před 7 roky
nowplaying Minor style fixes před 7 roky
osd Use EventBus interface. před 7 roky
osx_integration Restructure to standard maven/gradle layout. před 7 roky
parser_irc Restructure to standard maven/gradle layout. před 7 roky
parser_xmpp Restructure to standard maven/gradle layout. před 7 roky
parserdebug Use EventBus interface. před 7 roky
qauth Migrate to new @GlobalConfig annotation. před 7 roky
redirect Use EventBus interface. před 7 roky
scriptplugin Migrate to new @GlobalConfig annotation. před 7 roky
sessionlock Restructure to standard maven/gradle layout. před 7 roky
systray Migrate to new @GlobalConfig annotation. před 7 roky
tabcompletion_bash Restructure to standard maven/gradle layout. před 7 roky
tabcompletion_mirc Minor style fixes před 7 roky
time Use EventBus interface. před 7 roky
ui_swing Minor style fixes před 7 roky
ui_web2 Migrate to new @GlobalConfig annotation. před 7 roky
whoisonquery Use EventBus interface. před 7 roky
windowflashing Migrate to new @GlobalConfig annotation. před 7 roky
windowstatus Migrate to new @GlobalConfig annotation. před 7 roky
.gitignore Restructure to standard maven/gradle layout. před 7 roky
.gitreview Add .gitreview config. před 9 roky
AUTHORS Fix LICENCE file name and add AUTHORS file. před 10 roky
LICENCE 2015! před 9 roky
README.md Add Codacy badge před 7 roky
build-configutils.xml Apparently some OSes use different line endings - who knew? před 12 roky
build-pluginutils.xml Add new build util files for extracting info from and bundling plugins před 13 roky
build.gradle Rename custom jar and test tasks in plugins. před 7 roky
build.xml Collect plugin jars in dist folder, like before. před 9 roky
circle.yml Rename custom jar and test tasks in plugins. před 7 roky
gradlew Update gradle to 3.1. před 7 roky
gradlew.bat Update gradle to 3.1. před 7 roky
settings.gradle Actually include plugins again. před 7 roky

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.