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 9ca687017d Handle random class renaming. пре 7 година
audio Update copyright. пре 7 година
awaycolours Handle random class renaming. пре 7 година
calc Update copyright. пре 7 година
channelwho Handle random class renaming. пре 7 година
conditional_execute Handle random class renaming. пре 7 година
contactlist Handle random class renaming. пре 7 година
dcc Handle random class renaming. пре 7 година
debug Handle random class renaming. пре 7 година
dns Update copyright. пре 7 година
etc/pmd Update copyright. пре 7 година
exec Update copyright. пре 7 година
freedesktop_notifications Update copyright. пре 7 година
gradle Update copyright. пре 7 година
identd Handle random class renaming. пре 7 година
jpq Handle random class renaming. пре 7 година
lagdisplay Handle random class renaming. пре 7 година
logging Handle random class renaming. пре 7 година
mediasource_dbus Update copyright. пре 7 година
mediasource_linux_title Update copyright. пре 7 година
mediasource_mplayer Update copyright. пре 7 година
mediasource_vlc Update copyright. пре 7 година
mediasource_windows Update copyright. пре 7 година
nickcolours Handle random class renaming. пре 7 година
nickkeep Handle random class renaming. пре 7 година
nma Update copyright. пре 7 година
notifications Handle random class renaming. пре 7 година
nowplaying Handle random class renaming. пре 7 година
osd Handle random class renaming. пре 7 година
osx_integration Update copyright. пре 7 година
parser_irc Update copyright. пре 7 година
parser_xmpp Update copyright. пре 7 година
parserdebug Handle random class renaming. пре 7 година
qauth Handle random class renaming. пре 7 година
redirect Handle random class renaming. пре 7 година
scriptplugin Handle random class renaming. пре 7 година
sessionlock Update copyright. пре 7 година
systray Handle random class renaming. пре 7 година
tabcompletion_bash Update copyright. пре 7 година
tabcompletion_mirc Update copyright. пре 7 година
time Handle random class renaming. пре 7 година
ui_swing Handle random class renaming. пре 7 година
ui_web2 Handle random class renaming. пре 7 година
whoisonquery Handle random class renaming. пре 7 година
windowflashing Handle random class renaming. пре 7 година
windowstatus Handle random class renaming. пре 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 Update copyright. пре 7 година
build-pluginutils.xml Update copyright. пре 7 година
build.gradle Update copyright. пре 7 година
build.xml Update copyright. пре 7 година
circle.yml Rename custom jar and test tasks in plugins. пре 7 година
gradlew Update gradle to 3.1. пре 7 година
gradlew.bat Update gradle to 3.1. пре 7 година
settings.gradle Update copyright. пре 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.