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
пре 3 година
.circleci Minor changes for circle. пре 3 година
audio Update copyright. пре 7 година
awaycolours Support for core config provider changes пре 7 година
calc Update copyright. пре 7 година
channelwho Support for core config provider changes пре 7 година
conditional_execute Handle random class renaming. пре 7 година
contactlist Handle random class renaming. пре 7 година
dcc Support for core config provider changes пре 7 година
debug Remove unused imports пре 7 година
dns Update copyright. пре 7 година
etc/pmd Update copyright. пре 7 година
exec Update copyright. пре 7 година
freedesktop_notifications Support for core config provider changes пре 7 година
gradle Update copyright. пре 7 година
identd Support for core config provider changes пре 7 година
jpq Support for core config provider changes пре 7 година
lagdisplay Support for core config provider changes пре 7 година
logging Log outgoing queries correctly rather than using the target nickname пре 7 година
mediasource_dbus Update copyright. пре 7 година
mediasource_linux_title Update copyright. пре 7 година
mediasource_mplayer Update copyright. пре 7 година
mediasource_vlc Update copyright. пре 7 година
mediasource_windows Update copyright for 2017 пре 7 година
nickcolours Support for core config provider changes пре 7 година
nickkeep Handle random class renaming. пре 7 година
nma Update copyright. пре 7 година
notifications Support for core config provider changes пре 7 година
nowplaying Support for core config provider changes пре 7 година
osd Handle random class renaming. пре 7 година
osx_integration Update copyright. пре 7 година
parser_irc Update copyright. пре 7 година
parser_xmpp Update copyright. пре 7 година
parserdebug Handle random class renaming. пре 7 година
qauth Support for core config provider changes пре 7 година
redirect Handle random class renaming. пре 7 година
scriptplugin Support for core config provider changes пре 7 година
sessionlock Update copyright. пре 7 година
systray Support for core config provider changes пре 7 година
tabcompletion_bash Update copyright. пре 7 година
tabcompletion_mirc Update copyright. пре 7 година
time Handle random class renaming. пре 7 година
ui_swing Don't block for the EDT when an error is raised. пре 7 година
ui_web2 Support for core config provider changes пре 7 година
whoisonquery Support for core config provider changes пре 7 година
windowflashing Support for core config provider changes пре 7 година
windowstatus WindowStatusPlugin fixes. пре 7 година
.gitignore Ignore .nb-gradle folder пре 7 година
.gitreview Add .gitreview config. пре 9 година
AUTHORS Fix LICENCE file name and add AUTHORS file. пре 10 година
LICENCE Update copyright for 2017 пре 7 година
README.md Add Codacy badge пре 7 година
build-configutils.xml Update copyright. пре 7 година
build-pluginutils.xml Update copyright. пре 7 година
build.gradle Repo updates for building. пре 3 година
build.xml Update copyright. пре 7 година
gradlew Update gradle to 3.1. пре 7 година
gradlew.bat Update gradle to 3.1. пре 7 година
settings.gradle Update copyright. пре 7 година

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.