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.
Chris Smith 61e9559ff0 Update gradle to 3.1. il y a 7 ans
audio Restructure to standard maven/gradle layout. il y a 7 ans
awaycolours Use EventBus interface. il y a 7 ans
calc Restructure to standard maven/gradle layout. il y a 7 ans
channelwho Use EventBus interface. il y a 7 ans
conditional_execute Use EventBus interface. il y a 7 ans
contactlist Use EventBus interface. il y a 7 ans
dcc Use EventBus interface. il y a 7 ans
dcop Restructure to standard maven/gradle layout. il y a 7 ans
debug Support for core control code changes. il y a 7 ans
dns Restructure to standard maven/gradle layout. il y a 7 ans
etc/pmd Enable PMD for plugins. il y a 9 ans
exec Restructure to standard maven/gradle layout. il y a 7 ans
freedesktop_notifications Restructure to standard maven/gradle layout. il y a 7 ans
gradle Update gradle to 3.1. il y a 7 ans
identd Fix maven URL and dependencies. il y a 7 ans
jpq Use EventBus interface. il y a 7 ans
lagdisplay Use EventBus interface. il y a 7 ans
logging Support for core control code changes. il y a 7 ans
mediasource_dbus Restructure to standard maven/gradle layout. il y a 7 ans
mediasource_dcop Restructure to standard maven/gradle layout. il y a 7 ans
mediasource_linux_title Restructure to standard maven/gradle layout. il y a 7 ans
mediasource_mplayer Restructure to standard maven/gradle layout. il y a 7 ans
mediasource_vlc Restructure to standard maven/gradle layout. il y a 7 ans
mediasource_windows Restructure to standard maven/gradle layout. il y a 7 ans
nickcolours Use EventBus interface. il y a 7 ans
nickkeep Use EventBus interface. il y a 7 ans
nma Restructure to standard maven/gradle layout. il y a 7 ans
notifications Use EventBus interface. il y a 7 ans
nowplaying Use EventBus interface. il y a 7 ans
osd Use EventBus interface. il y a 7 ans
osx_integration Restructure to standard maven/gradle layout. il y a 7 ans
parser_irc Restructure to standard maven/gradle layout. il y a 7 ans
parser_xmpp Restructure to standard maven/gradle layout. il y a 7 ans
parserdebug Use EventBus interface. il y a 7 ans
qauth Use EventBus interface. il y a 7 ans
redirect Use EventBus interface. il y a 7 ans
scriptplugin Use EventBus interface. il y a 7 ans
sessionlock Restructure to standard maven/gradle layout. il y a 7 ans
systray Use EventBus interface. il y a 7 ans
tabcompletion_bash Restructure to standard maven/gradle layout. il y a 7 ans
tabcompletion_mirc Restructure to standard maven/gradle layout. il y a 7 ans
time Use EventBus interface. il y a 7 ans
ui_swing Support for core control code changes. il y a 7 ans
ui_web2 Support for core changes. il y a 7 ans
whoisonquery Use EventBus interface. il y a 7 ans
windowflashing Use EventBus interface. il y a 7 ans
windowstatus Use EventBus interface. il y a 7 ans
.gitignore Restructure to standard maven/gradle layout. il y a 7 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 7 ans
build-configutils.xml Apparently some OSes use different line endings - who knew? il y a 12 ans
build-pluginutils.xml Add new build util files for extracting info from and bundling plugins il y a 13 ans
build.gradle Update gradle to 3.1. il y a 7 ans
build.xml Collect plugin jars in dist folder, like before. il y a 9 ans
circle.yml Try to speed up CI a bit. il y a 9 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 Actually include plugins again. 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.