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