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.
Greg Holmes 3d065b952f Merge pull request #511 from csmith/master пре 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.