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 15dc5f8d0a Fix layout issue from MigLayout update il y a 7 ans
audio Restructure to standard maven/gradle layout. il y a 8 ans
awaycolours Restructure to standard maven/gradle layout. il y a 8 ans
calc Restructure to standard maven/gradle layout. il y a 8 ans
channelwho Restructure to standard maven/gradle layout. il y a 8 ans
conditional_execute Restructure to standard maven/gradle layout. il y a 8 ans
contactlist Restructure to standard maven/gradle layout. il y a 8 ans
dcc Restructure to standard maven/gradle layout. il y a 8 ans
dcop Restructure to standard maven/gradle layout. il y a 8 ans
debug Restructure to standard maven/gradle layout. il y a 8 ans
dns Restructure to standard maven/gradle layout. il y a 8 ans
etc/pmd Enable PMD for plugins. il y a 9 ans
exec Restructure to standard maven/gradle layout. il y a 8 ans
freedesktop_notifications Restructure to standard maven/gradle layout. il y a 8 ans
gradle Update dependencies. il y a 8 ans
identd Restructure to standard maven/gradle layout. il y a 8 ans
jpq Restructure to standard maven/gradle layout. il y a 8 ans
lagdisplay Restructure to standard maven/gradle layout. il y a 8 ans
logging Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_dbus Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_dcop Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_linux_title Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_mplayer Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_vlc Restructure to standard maven/gradle layout. il y a 8 ans
mediasource_windows Restructure to standard maven/gradle layout. il y a 8 ans
nickcolours Restructure to standard maven/gradle layout. il y a 8 ans
nickkeep Restructure to standard maven/gradle layout. il y a 8 ans
nma Restructure to standard maven/gradle layout. il y a 8 ans
notifications Restructure to standard maven/gradle layout. il y a 8 ans
nowplaying Restructure to standard maven/gradle layout. il y a 8 ans
osd Restructure to standard maven/gradle layout. il y a 8 ans
osx_integration Restructure to standard maven/gradle layout. il y a 8 ans
parser_irc Restructure to standard maven/gradle layout. il y a 8 ans
parser_xmpp Restructure to standard maven/gradle layout. il y a 8 ans
parserdebug Restructure to standard maven/gradle layout. il y a 8 ans
qauth Restructure to standard maven/gradle layout. il y a 8 ans
redirect Restructure to standard maven/gradle layout. il y a 8 ans
scriptplugin Restructure to standard maven/gradle layout. il y a 8 ans
sessionlock Restructure to standard maven/gradle layout. il y a 8 ans
systray Restructure to standard maven/gradle layout. il y a 8 ans
tabcompletion_bash Restructure to standard maven/gradle layout. il y a 8 ans
tabcompletion_mirc Restructure to standard maven/gradle layout. il y a 8 ans
time Restructure to standard maven/gradle layout. il y a 8 ans
ui_swing Fix layout issue from MigLayout update il y a 7 ans
ui_web2 Make the WebSocketController subscribe to events. il y a 8 ans
whoisonquery Restructure to standard maven/gradle layout. il y a 8 ans
windowflashing Restructure to standard maven/gradle layout. il y a 8 ans
windowstatus Stop using Window and InputWindow. il y a 8 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 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 Relax exclusions for bundled project's META-INF. il y a 8 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 dependencies. il y a 8 ans
gradlew.bat Update dependencies. il y a 8 ans
settings.gradle Actually include plugins again. il y a 8 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.