Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Shane Mc Cormack f42d84a041
Merge pull request #536 from ShaneMcC/master
il y a 3 ans
.circleci Minor changes for circle. il y a 3 ans
audio Update copyright. il y a 7 ans
awaycolours Support for core config provider changes il y a 7 ans
calc Update copyright. il y a 7 ans
channelwho Support for core config provider changes il y a 7 ans
conditional_execute Handle random class renaming. il y a 7 ans
contactlist Handle random class renaming. il y a 7 ans
dcc Support for core config provider changes il y a 7 ans
debug Remove unused imports il y a 7 ans
dns Update copyright. il y a 7 ans
etc/pmd Update copyright. il y a 7 ans
exec Update copyright. il y a 7 ans
freedesktop_notifications Support for core config provider changes il y a 7 ans
gradle Update copyright. il y a 7 ans
identd Support for core config provider changes il y a 7 ans
jpq Support for core config provider changes il y a 7 ans
lagdisplay Support for core config provider changes il y a 7 ans
logging Log outgoing queries correctly rather than using the target nickname il y a 7 ans
mediasource_dbus Update copyright. il y a 7 ans
mediasource_linux_title Update copyright. il y a 7 ans
mediasource_mplayer Update copyright. il y a 7 ans
mediasource_vlc Update copyright. il y a 7 ans
mediasource_windows Update copyright for 2017 il y a 7 ans
nickcolours Support for core config provider changes il y a 7 ans
nickkeep Handle random class renaming. il y a 7 ans
nma Update copyright. il y a 7 ans
notifications Support for core config provider changes il y a 7 ans
nowplaying Support for core config provider changes il y a 7 ans
osd Handle random class renaming. il y a 7 ans
osx_integration Update copyright. il y a 7 ans
parser_irc Update copyright. il y a 7 ans
parser_xmpp Update copyright. il y a 7 ans
parserdebug Handle random class renaming. il y a 7 ans
qauth Support for core config provider changes il y a 7 ans
redirect Handle random class renaming. il y a 7 ans
scriptplugin Support for core config provider changes il y a 7 ans
sessionlock Update copyright. il y a 7 ans
systray Support for core config provider changes il y a 7 ans
tabcompletion_bash Update copyright. il y a 7 ans
tabcompletion_mirc Update copyright. il y a 7 ans
time Handle random class renaming. il y a 7 ans
ui_swing Don't block for the EDT when an error is raised. il y a 7 ans
ui_web2 Support for core config provider changes il y a 7 ans
whoisonquery Support for core config provider changes il y a 7 ans
windowflashing Support for core config provider changes il y a 7 ans
windowstatus WindowStatusPlugin fixes. il y a 7 ans
.gitignore Ignore .nb-gradle folder il y a 7 ans
.gitreview Add .gitreview config. il y a 9 ans
AUTHORS Fix LICENCE file name and add AUTHORS file. il y a 10 ans
LICENCE Update copyright for 2017 il y a 7 ans
README.md Add Codacy badge il y a 7 ans
build-configutils.xml Update copyright. il y a 7 ans
build-pluginutils.xml Update copyright. il y a 7 ans
build.gradle Repo updates for building. il y a 3 ans
build.xml Update copyright. il y a 7 ans
gradlew Update gradle to 3.1. il y a 7 ans
gradlew.bat Update gradle to 3.1. il y a 7 ans
settings.gradle Update copyright. il y a 7 ans

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.