Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
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.