You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
The Codacy Badger 0e8dd623ae Add Codacy badge hace 7 años
audio Restructure to standard maven/gradle layout. hace 7 años
awaycolours Migrate to new @GlobalConfig annotation. hace 7 años
calc Minor style fixes hace 7 años
channelwho Migrate to new @GlobalConfig annotation. hace 7 años
conditional_execute Use EventBus interface. hace 7 años
contactlist Use EventBus interface. hace 7 años
dcc Minor style fixes hace 7 años
dcop Restructure to standard maven/gradle layout. hace 7 años
debug Migrate to new @GlobalConfig annotation. hace 7 años
dns Restructure to standard maven/gradle layout. hace 7 años
etc/pmd Enable PMD for plugins. hace 9 años
exec Restructure to standard maven/gradle layout. hace 7 años
freedesktop_notifications Minor style fixes hace 7 años
gradle Update gradle to 3.1. hace 7 años
identd Migrate to new @GlobalConfig annotation. hace 7 años
jpq Use EventBus interface. hace 7 años
lagdisplay Migrate to new @GlobalConfig annotation. hace 7 años
logging Migrate to new @UserConfig annotation. hace 7 años
mediasource_dbus Restructure to standard maven/gradle layout. hace 7 años
mediasource_dcop Restructure to standard maven/gradle layout. hace 7 años
mediasource_linux_title Restructure to standard maven/gradle layout. hace 7 años
mediasource_mplayer Restructure to standard maven/gradle layout. hace 7 años
mediasource_vlc Restructure to standard maven/gradle layout. hace 7 años
mediasource_windows Restructure to standard maven/gradle layout. hace 7 años
nickcolours Minor style fixes hace 7 años
nickkeep Use EventBus interface. hace 7 años
nma Restructure to standard maven/gradle layout. hace 7 años
notifications Migrate to new @GlobalConfig annotation. hace 7 años
nowplaying Minor style fixes hace 7 años
osd Use EventBus interface. hace 7 años
osx_integration Restructure to standard maven/gradle layout. hace 7 años
parser_irc Restructure to standard maven/gradle layout. hace 7 años
parser_xmpp Restructure to standard maven/gradle layout. hace 7 años
parserdebug Use EventBus interface. hace 7 años
qauth Migrate to new @GlobalConfig annotation. hace 7 años
redirect Use EventBus interface. hace 7 años
scriptplugin Migrate to new @GlobalConfig annotation. hace 7 años
sessionlock Restructure to standard maven/gradle layout. hace 7 años
systray Migrate to new @GlobalConfig annotation. hace 7 años
tabcompletion_bash Restructure to standard maven/gradle layout. hace 7 años
tabcompletion_mirc Minor style fixes hace 7 años
time Use EventBus interface. hace 7 años
ui_swing Minor style fixes hace 7 años
ui_web2 Migrate to new @GlobalConfig annotation. hace 7 años
whoisonquery Use EventBus interface. hace 7 años
windowflashing Migrate to new @GlobalConfig annotation. hace 7 años
windowstatus Migrate to new @GlobalConfig annotation. hace 7 años
.gitignore Restructure to standard maven/gradle layout. hace 7 años
.gitreview Add .gitreview config. hace 9 años
AUTHORS Fix LICENCE file name and add AUTHORS file. hace 10 años
LICENCE 2015! hace 9 años
README.md Add Codacy badge hace 7 años
build-configutils.xml Apparently some OSes use different line endings - who knew? hace 12 años
build-pluginutils.xml Add new build util files for extracting info from and bundling plugins hace 13 años
build.gradle Rename custom jar and test tasks in plugins. hace 7 años
build.xml Collect plugin jars in dist folder, like before. hace 9 años
circle.yml Rename custom jar and test tasks in plugins. hace 7 años
gradlew Update gradle to 3.1. hace 7 años
gradlew.bat Update gradle to 3.1. hace 7 años
settings.gradle Actually include plugins again. hace 7 años

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.