You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Chris Smith 61e9559ff0 Update gradle to 3.1. пре 7 година
audio Restructure to standard maven/gradle layout. пре 7 година
awaycolours Use EventBus interface. пре 7 година
calc Restructure to standard maven/gradle layout. пре 7 година
channelwho Use EventBus interface. пре 7 година
conditional_execute Use EventBus interface. пре 7 година
contactlist Use EventBus interface. пре 7 година
dcc Use EventBus interface. пре 7 година
dcop Restructure to standard maven/gradle layout. пре 7 година
debug Support for core control code changes. пре 7 година
dns Restructure to standard maven/gradle layout. пре 7 година
etc/pmd Enable PMD for plugins. пре 9 година
exec Restructure to standard maven/gradle layout. пре 7 година
freedesktop_notifications Restructure to standard maven/gradle layout. пре 7 година
gradle Update gradle to 3.1. пре 7 година
identd Fix maven URL and dependencies. пре 7 година
jpq Use EventBus interface. пре 7 година
lagdisplay Use EventBus interface. пре 7 година
logging Support for core control code changes. пре 7 година
mediasource_dbus Restructure to standard maven/gradle layout. пре 7 година
mediasource_dcop Restructure to standard maven/gradle layout. пре 7 година
mediasource_linux_title Restructure to standard maven/gradle layout. пре 7 година
mediasource_mplayer Restructure to standard maven/gradle layout. пре 7 година
mediasource_vlc Restructure to standard maven/gradle layout. пре 7 година
mediasource_windows Restructure to standard maven/gradle layout. пре 7 година
nickcolours Use EventBus interface. пре 7 година
nickkeep Use EventBus interface. пре 7 година
nma Restructure to standard maven/gradle layout. пре 7 година
notifications Use EventBus interface. пре 7 година
nowplaying Use EventBus interface. пре 7 година
osd Use EventBus interface. пре 7 година
osx_integration Restructure to standard maven/gradle layout. пре 7 година
parser_irc Restructure to standard maven/gradle layout. пре 7 година
parser_xmpp Restructure to standard maven/gradle layout. пре 7 година
parserdebug Use EventBus interface. пре 7 година
qauth Use EventBus interface. пре 7 година
redirect Use EventBus interface. пре 7 година
scriptplugin Use EventBus interface. пре 7 година
sessionlock Restructure to standard maven/gradle layout. пре 7 година
systray Use EventBus interface. пре 7 година
tabcompletion_bash Restructure to standard maven/gradle layout. пре 7 година
tabcompletion_mirc Restructure to standard maven/gradle layout. пре 7 година
time Use EventBus interface. пре 7 година
ui_swing Support for core control code changes. пре 7 година
ui_web2 Support for core changes. пре 7 година
whoisonquery Use EventBus interface. пре 7 година
windowflashing Use EventBus interface. пре 7 година
windowstatus Use EventBus interface. пре 7 година
.gitignore Restructure to standard maven/gradle layout. пре 7 година
.gitreview Add .gitreview config. пре 9 година
AUTHORS Fix LICENCE file name and add AUTHORS file. пре 10 година
LICENCE 2015! пре 9 година
README.md Add a 'provided' scope. пре 7 година
build-configutils.xml Apparently some OSes use different line endings - who knew? пре 12 година
build-pluginutils.xml Add new build util files for extracting info from and bundling plugins пре 13 година
build.gradle Update gradle to 3.1. пре 7 година
build.xml Collect plugin jars in dist folder, like before. пре 9 година
circle.yml Try to speed up CI a bit. пре 9 година
gradlew Update gradle to 3.1. пре 7 година
gradlew.bat Update gradle to 3.1. пре 7 година
settings.gradle Actually include plugins again. пре 7 година

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.