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.
The Codacy Badger 0e8dd623ae Add Codacy badge il y a 7 ans
audio Restructure to standard maven/gradle layout. il y a 7 ans
awaycolours Migrate to new @GlobalConfig annotation. il y a 7 ans
calc Minor style fixes il y a 7 ans
channelwho Migrate to new @GlobalConfig annotation. 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 Minor style fixes il y a 7 ans
dcop Restructure to standard maven/gradle layout. il y a 7 ans
debug Migrate to new @GlobalConfig annotation. 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 Minor style fixes il y a 7 ans
gradle Update gradle to 3.1. il y a 7 ans
identd Migrate to new @GlobalConfig annotation. il y a 7 ans
jpq Use EventBus interface. il y a 7 ans
lagdisplay Migrate to new @GlobalConfig annotation. il y a 7 ans
logging Migrate to new @UserConfig annotation. 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 Minor style fixes 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 Migrate to new @GlobalConfig annotation. il y a 7 ans
nowplaying Minor style fixes 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 Migrate to new @GlobalConfig annotation. il y a 7 ans
redirect Use EventBus interface. il y a 7 ans
scriptplugin Migrate to new @GlobalConfig annotation. il y a 7 ans
sessionlock Restructure to standard maven/gradle layout. il y a 7 ans
systray Migrate to new @GlobalConfig annotation. il y a 7 ans
tabcompletion_bash Restructure to standard maven/gradle layout. il y a 7 ans
tabcompletion_mirc Minor style fixes il y a 7 ans
time Use EventBus interface. il y a 7 ans
ui_swing Minor style fixes il y a 7 ans
ui_web2 Migrate to new @GlobalConfig annotation. il y a 7 ans
whoisonquery Use EventBus interface. il y a 7 ans
windowflashing Migrate to new @GlobalConfig annotation. il y a 7 ans
windowstatus Migrate to new @GlobalConfig annotation. 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 Codacy badge 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 Rename custom jar and test tasks in plugins. il y a 7 ans
build.xml Collect plugin jars in dist folder, like before. il y a 9 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 Actually include plugins again. il y a 7 ans

README.md

DMDirc plugins

Codacy Badge

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.