Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Greg Holmes 3d065b952f Merge pull request #511 from csmith/master vor 7 Jahren
audio Update copyright. vor 7 Jahren
awaycolours Update copyright. vor 7 Jahren
calc Update copyright. vor 7 Jahren
channelwho Update copyright. vor 7 Jahren
conditional_execute Update copyright. vor 7 Jahren
contactlist Update copyright. vor 7 Jahren
dcc Update copyright. vor 7 Jahren
debug Update copyright. vor 7 Jahren
dns Update copyright. vor 7 Jahren
etc/pmd Update copyright. vor 7 Jahren
exec Update copyright. vor 7 Jahren
freedesktop_notifications Update copyright. vor 7 Jahren
gradle Update copyright. vor 7 Jahren
identd Update copyright. vor 7 Jahren
jpq Update copyright. vor 7 Jahren
lagdisplay Update copyright. vor 7 Jahren
logging Update copyright. vor 7 Jahren
mediasource_dbus Update copyright. vor 7 Jahren
mediasource_linux_title Update copyright. vor 7 Jahren
mediasource_mplayer Update copyright. vor 7 Jahren
mediasource_vlc Update copyright. vor 7 Jahren
mediasource_windows Update copyright. vor 7 Jahren
nickcolours Update copyright. vor 7 Jahren
nickkeep Update copyright. vor 7 Jahren
nma Update copyright. vor 7 Jahren
notifications Update copyright. vor 7 Jahren
nowplaying Update copyright. vor 7 Jahren
osd Update copyright. vor 7 Jahren
osx_integration Update copyright. vor 7 Jahren
parser_irc Update copyright. vor 7 Jahren
parser_xmpp Update copyright. vor 7 Jahren
parserdebug Update copyright. vor 7 Jahren
qauth Update copyright. vor 7 Jahren
redirect Update copyright. vor 7 Jahren
scriptplugin Update copyright. vor 7 Jahren
sessionlock Update copyright. vor 7 Jahren
systray Update copyright. vor 7 Jahren
tabcompletion_bash Update copyright. vor 7 Jahren
tabcompletion_mirc Update copyright. vor 7 Jahren
time Update copyright. vor 7 Jahren
ui_swing Update copyright. vor 7 Jahren
ui_web2 Update copyright. vor 7 Jahren
whoisonquery Update copyright. vor 7 Jahren
windowflashing Update copyright. vor 7 Jahren
windowstatus Update copyright. vor 7 Jahren
.gitignore Restructure to standard maven/gradle layout. vor 8 Jahren
.gitreview Add .gitreview config. vor 9 Jahren
AUTHORS Fix LICENCE file name and add AUTHORS file. vor 10 Jahren
LICENCE 2015! vor 9 Jahren
README.md Add a 'provided' scope. vor 8 Jahren
build-configutils.xml Update copyright. vor 7 Jahren
build-pluginutils.xml Update copyright. vor 7 Jahren
build.gradle Update copyright. vor 7 Jahren
build.xml Update copyright. vor 7 Jahren
circle.yml Rename custom jar and test tasks in plugins. vor 7 Jahren
gradlew Update gradle to 3.1. vor 7 Jahren
gradlew.bat Update gradle to 3.1. vor 7 Jahren
settings.gradle Update copyright. vor 7 Jahren

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.