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.
Chris Smith 8bbc292101 Update copyright. преди 7 години
audio Update copyright. преди 7 години
awaycolours Update copyright. преди 7 години
calc Update copyright. преди 7 години
channelwho Update copyright. преди 7 години
conditional_execute Update copyright. преди 7 години
contactlist Update copyright. преди 7 години
dcc Update copyright. преди 7 години
debug Update copyright. преди 7 години
dns Update copyright. преди 7 години
etc/pmd Update copyright. преди 7 години
exec Update copyright. преди 7 години
freedesktop_notifications Update copyright. преди 7 години
gradle Update copyright. преди 7 години
identd Update copyright. преди 7 години
jpq Update copyright. преди 7 години
lagdisplay Update copyright. преди 7 години
logging Update copyright. преди 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. преди 7 години
nickcolours Update copyright. преди 7 години
nickkeep Update copyright. преди 7 години
nma Update copyright. преди 7 години
notifications Update copyright. преди 7 години
nowplaying Update copyright. преди 7 години
osd Update copyright. преди 7 години
osx_integration Update copyright. преди 7 години
parser_irc Update copyright. преди 7 години
parser_xmpp Update copyright. преди 7 години
parserdebug Update copyright. преди 7 години
qauth Update copyright. преди 7 години
redirect Update copyright. преди 7 години
scriptplugin Update copyright. преди 7 години
sessionlock Update copyright. преди 7 години
systray Update copyright. преди 7 години
tabcompletion_bash Update copyright. преди 7 години
tabcompletion_mirc Update copyright. преди 7 години
time Update copyright. преди 7 години
ui_swing Update copyright. преди 7 години
ui_web2 Update copyright. преди 7 години
whoisonquery Update copyright. преди 7 години
windowflashing Update copyright. преди 7 години
windowstatus Update copyright. преди 7 години
.gitignore Restructure to standard maven/gradle layout. преди 8 години
.gitreview Add .gitreview config. преди 9 години
AUTHORS Fix LICENCE file name and add AUTHORS file. преди 10 години
LICENCE 2015! преди 9 години
README.md Add a 'provided' scope. преди 8 години
build-configutils.xml Update copyright. преди 7 години
build-pluginutils.xml Update copyright. преди 7 години
build.gradle Update copyright. преди 7 години
build.xml Update copyright. преди 7 години
circle.yml Rename custom jar and test tasks in plugins. преди 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

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.