Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Greg Holmes 3d065b952f Merge pull request #511 from csmith/master il y a 7 ans
audio Update copyright. il y a 7 ans
awaycolours Update copyright. il y a 7 ans
calc Update copyright. il y a 7 ans
channelwho Update copyright. il y a 7 ans
conditional_execute Update copyright. il y a 7 ans
contactlist Update copyright. il y a 7 ans
dcc Update copyright. il y a 7 ans
debug Update copyright. il y a 7 ans
dns Update copyright. il y a 7 ans
etc/pmd Update copyright. il y a 7 ans
exec Update copyright. il y a 7 ans
freedesktop_notifications Update copyright. il y a 7 ans
gradle Update copyright. il y a 7 ans
identd Update copyright. il y a 7 ans
jpq Update copyright. il y a 7 ans
lagdisplay Update copyright. il y a 7 ans
logging Update copyright. il y a 7 ans
mediasource_dbus Update copyright. il y a 7 ans
mediasource_linux_title Update copyright. il y a 7 ans
mediasource_mplayer Update copyright. il y a 7 ans
mediasource_vlc Update copyright. il y a 7 ans
mediasource_windows Update copyright. il y a 7 ans
nickcolours Update copyright. il y a 7 ans
nickkeep Update copyright. il y a 7 ans
nma Update copyright. il y a 7 ans
notifications Update copyright. il y a 7 ans
nowplaying Update copyright. il y a 7 ans
osd Update copyright. il y a 7 ans
osx_integration Update copyright. il y a 7 ans
parser_irc Update copyright. il y a 7 ans
parser_xmpp Update copyright. il y a 7 ans
parserdebug Update copyright. il y a 7 ans
qauth Update copyright. il y a 7 ans
redirect Update copyright. il y a 7 ans
scriptplugin Update copyright. il y a 7 ans
sessionlock Update copyright. il y a 7 ans
systray Update copyright. il y a 7 ans
tabcompletion_bash Update copyright. il y a 7 ans
tabcompletion_mirc Update copyright. il y a 7 ans
time Update copyright. il y a 7 ans
ui_swing Update copyright. il y a 7 ans
ui_web2 Update copyright. il y a 7 ans
whoisonquery Update copyright. il y a 7 ans
windowflashing Update copyright. il y a 7 ans
windowstatus Update copyright. il y a 7 ans
.gitignore Restructure to standard maven/gradle layout. il y a 8 ans
.gitreview Add .gitreview config. il y a 9 ans
AUTHORS Fix LICENCE file name and add AUTHORS file. il y a 10 ans
LICENCE 2015! il y a 9 ans
README.md Add a 'provided' scope. il y a 8 ans
build-configutils.xml Update copyright. il y a 7 ans
build-pluginutils.xml Update copyright. il y a 7 ans
build.gradle Update copyright. il y a 7 ans
build.xml Update copyright. il y a 7 ans
circle.yml Rename custom jar and test tasks in plugins. il y a 7 ans
gradlew Update gradle to 3.1. il y a 7 ans
gradlew.bat Update gradle to 3.1. il y a 7 ans
settings.gradle Update copyright. il y a 7 ans

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.