Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Shane Mc Cormack f42d84a041
Merge pull request #536 from ShaneMcC/master
před 3 roky
.circleci Minor changes for circle. před 3 roky
audio Update copyright. před 7 roky
awaycolours Support for core config provider changes před 7 roky
calc Update copyright. před 7 roky
channelwho Support for core config provider changes před 7 roky
conditional_execute Handle random class renaming. před 7 roky
contactlist Handle random class renaming. před 7 roky
dcc Support for core config provider changes před 7 roky
debug Remove unused imports před 7 roky
dns Update copyright. před 7 roky
etc/pmd Update copyright. před 7 roky
exec Update copyright. před 7 roky
freedesktop_notifications Support for core config provider changes před 7 roky
gradle Update copyright. před 7 roky
identd Support for core config provider changes před 7 roky
jpq Support for core config provider changes před 7 roky
lagdisplay Support for core config provider changes před 7 roky
logging Log outgoing queries correctly rather than using the target nickname před 7 roky
mediasource_dbus Update copyright. před 7 roky
mediasource_linux_title Update copyright. před 7 roky
mediasource_mplayer Update copyright. před 7 roky
mediasource_vlc Update copyright. před 7 roky
mediasource_windows Update copyright for 2017 před 7 roky
nickcolours Support for core config provider changes před 7 roky
nickkeep Handle random class renaming. před 7 roky
nma Update copyright. před 7 roky
notifications Support for core config provider changes před 7 roky
nowplaying Support for core config provider changes před 7 roky
osd Handle random class renaming. před 7 roky
osx_integration Update copyright. před 7 roky
parser_irc Update copyright. před 7 roky
parser_xmpp Update copyright. před 7 roky
parserdebug Handle random class renaming. před 7 roky
qauth Support for core config provider changes před 7 roky
redirect Handle random class renaming. před 7 roky
scriptplugin Support for core config provider changes před 7 roky
sessionlock Update copyright. před 7 roky
systray Support for core config provider changes před 7 roky
tabcompletion_bash Update copyright. před 7 roky
tabcompletion_mirc Update copyright. před 7 roky
time Handle random class renaming. před 7 roky
ui_swing Don't block for the EDT when an error is raised. před 7 roky
ui_web2 Support for core config provider changes před 7 roky
whoisonquery Support for core config provider changes před 7 roky
windowflashing Support for core config provider changes před 7 roky
windowstatus WindowStatusPlugin fixes. před 7 roky
.gitignore Ignore .nb-gradle folder před 7 roky
.gitreview Add .gitreview config. před 9 roky
AUTHORS Fix LICENCE file name and add AUTHORS file. před 10 roky
LICENCE Update copyright for 2017 před 7 roky
README.md Add Codacy badge před 7 roky
build-configutils.xml Update copyright. před 7 roky
build-pluginutils.xml Update copyright. před 7 roky
build.gradle Repo updates for building. před 3 roky
build.xml Update copyright. před 7 roky
gradlew Update gradle to 3.1. před 7 roky
gradlew.bat Update gradle to 3.1. před 7 roky
settings.gradle Update copyright. před 7 roky

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.