Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Shane Mc Cormack f42d84a041
Merge pull request #536 from ShaneMcC/master
3 gadus atpakaļ
.circleci Minor changes for circle. 3 gadus atpakaļ
audio Update copyright. 7 gadus atpakaļ
awaycolours Support for core config provider changes 7 gadus atpakaļ
calc Update copyright. 7 gadus atpakaļ
channelwho Support for core config provider changes 7 gadus atpakaļ
conditional_execute Handle random class renaming. 7 gadus atpakaļ
contactlist Handle random class renaming. 7 gadus atpakaļ
dcc Support for core config provider changes 7 gadus atpakaļ
debug Remove unused imports 7 gadus atpakaļ
dns Update copyright. 7 gadus atpakaļ
etc/pmd Update copyright. 7 gadus atpakaļ
exec Update copyright. 7 gadus atpakaļ
freedesktop_notifications Support for core config provider changes 7 gadus atpakaļ
gradle Update copyright. 7 gadus atpakaļ
identd Support for core config provider changes 7 gadus atpakaļ
jpq Support for core config provider changes 7 gadus atpakaļ
lagdisplay Support for core config provider changes 7 gadus atpakaļ
logging Log outgoing queries correctly rather than using the target nickname 7 gadus atpakaļ
mediasource_dbus Update copyright. 7 gadus atpakaļ
mediasource_linux_title Update copyright. 7 gadus atpakaļ
mediasource_mplayer Update copyright. 7 gadus atpakaļ
mediasource_vlc Update copyright. 7 gadus atpakaļ
mediasource_windows Update copyright for 2017 7 gadus atpakaļ
nickcolours Support for core config provider changes 7 gadus atpakaļ
nickkeep Handle random class renaming. 7 gadus atpakaļ
nma Update copyright. 7 gadus atpakaļ
notifications Support for core config provider changes 7 gadus atpakaļ
nowplaying Support for core config provider changes 7 gadus atpakaļ
osd Handle random class renaming. 7 gadus atpakaļ
osx_integration Update copyright. 7 gadus atpakaļ
parser_irc Update copyright. 7 gadus atpakaļ
parser_xmpp Update copyright. 7 gadus atpakaļ
parserdebug Handle random class renaming. 7 gadus atpakaļ
qauth Support for core config provider changes 7 gadus atpakaļ
redirect Handle random class renaming. 7 gadus atpakaļ
scriptplugin Support for core config provider changes 7 gadus atpakaļ
sessionlock Update copyright. 7 gadus atpakaļ
systray Support for core config provider changes 7 gadus atpakaļ
tabcompletion_bash Update copyright. 7 gadus atpakaļ
tabcompletion_mirc Update copyright. 7 gadus atpakaļ
time Handle random class renaming. 7 gadus atpakaļ
ui_swing Don't block for the EDT when an error is raised. 7 gadus atpakaļ
ui_web2 Support for core config provider changes 7 gadus atpakaļ
whoisonquery Support for core config provider changes 7 gadus atpakaļ
windowflashing Support for core config provider changes 7 gadus atpakaļ
windowstatus WindowStatusPlugin fixes. 7 gadus atpakaļ
.gitignore Ignore .nb-gradle folder 7 gadus atpakaļ
.gitreview Add .gitreview config. 9 gadus atpakaļ
AUTHORS Fix LICENCE file name and add AUTHORS file. 10 gadus atpakaļ
LICENCE Update copyright for 2017 7 gadus atpakaļ
README.md Add Codacy badge 7 gadus atpakaļ
build-configutils.xml Update copyright. 7 gadus atpakaļ
build-pluginutils.xml Update copyright. 7 gadus atpakaļ
build.gradle Repo updates for building. 3 gadus atpakaļ
build.xml Update copyright. 7 gadus atpakaļ
gradlew Update gradle to 3.1. 7 gadus atpakaļ
gradlew.bat Update gradle to 3.1. 7 gadus atpakaļ
settings.gradle Update copyright. 7 gadus atpakaļ

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.