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.
Shane Mc Cormack f42d84a041
Merge pull request #536 from ShaneMcC/master
hace 3 años
.circleci Minor changes for circle. hace 3 años
audio Update copyright. hace 7 años
awaycolours Support for core config provider changes hace 7 años
calc Update copyright. hace 7 años
channelwho Support for core config provider changes hace 7 años
conditional_execute Handle random class renaming. hace 7 años
contactlist Handle random class renaming. hace 7 años
dcc Support for core config provider changes hace 7 años
debug Remove unused imports hace 7 años
dns Update copyright. hace 7 años
etc/pmd Update copyright. hace 7 años
exec Update copyright. hace 7 años
freedesktop_notifications Support for core config provider changes hace 7 años
gradle Update copyright. hace 7 años
identd Support for core config provider changes hace 7 años
jpq Support for core config provider changes hace 7 años
lagdisplay Support for core config provider changes hace 7 años
logging Log outgoing queries correctly rather than using the target nickname hace 7 años
mediasource_dbus Update copyright. hace 7 años
mediasource_linux_title Update copyright. hace 7 años
mediasource_mplayer Update copyright. hace 7 años
mediasource_vlc Update copyright. hace 7 años
mediasource_windows Update copyright for 2017 hace 7 años
nickcolours Support for core config provider changes hace 7 años
nickkeep Handle random class renaming. hace 7 años
nma Update copyright. hace 7 años
notifications Support for core config provider changes hace 7 años
nowplaying Support for core config provider changes hace 7 años
osd Handle random class renaming. hace 7 años
osx_integration Update copyright. hace 7 años
parser_irc Update copyright. hace 7 años
parser_xmpp Update copyright. hace 7 años
parserdebug Handle random class renaming. hace 7 años
qauth Support for core config provider changes hace 7 años
redirect Handle random class renaming. hace 7 años
scriptplugin Support for core config provider changes hace 7 años
sessionlock Update copyright. hace 7 años
systray Support for core config provider changes hace 7 años
tabcompletion_bash Update copyright. hace 7 años
tabcompletion_mirc Update copyright. hace 7 años
time Handle random class renaming. hace 7 años
ui_swing Don't block for the EDT when an error is raised. hace 7 años
ui_web2 Support for core config provider changes hace 7 años
whoisonquery Support for core config provider changes hace 7 años
windowflashing Support for core config provider changes hace 7 años
windowstatus WindowStatusPlugin fixes. hace 7 años
.gitignore Ignore .nb-gradle folder 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 Update copyright for 2017 hace 7 años
README.md Add Codacy badge hace 7 años
build-configutils.xml Update copyright. hace 7 años
build-pluginutils.xml Update copyright. hace 7 años
build.gradle Repo updates for building. hace 3 años
build.xml Update copyright. 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 Update copyright. 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.