Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Chris Smith 86555906cc Extend BaseCommand not Command. 7 лет назад
audio Extend BaseCommand not Command. 7 лет назад
awaycolours Migrate to new @GlobalConfig annotation. 7 лет назад
calc Extend BaseCommand not Command. 7 лет назад
channelwho Migrate to new @GlobalConfig annotation. 7 лет назад
conditional_execute Extend BaseCommand not Command. 7 лет назад
contactlist Extend BaseCommand not Command. 7 лет назад
dcc Extend BaseCommand not Command. 7 лет назад
dcop Extend BaseCommand not Command. 7 лет назад
debug Extend BaseCommand not Command. 7 лет назад
dns Extend BaseCommand not Command. 7 лет назад
etc/pmd Enable PMD for plugins. 9 лет назад
exec Extend BaseCommand not Command. 7 лет назад
freedesktop_notifications Extend BaseCommand not Command. 7 лет назад
gradle Update gradle to 3.1. 7 лет назад
identd Migrate to new @GlobalConfig annotation. 7 лет назад
jpq Use EventBus interface. 7 лет назад
lagdisplay Migrate to new @GlobalConfig annotation. 7 лет назад
logging Extend BaseCommand not Command. 7 лет назад
mediasource_dbus Restructure to standard maven/gradle layout. 8 лет назад
mediasource_dcop Restructure to standard maven/gradle layout. 8 лет назад
mediasource_linux_title Restructure to standard maven/gradle layout. 8 лет назад
mediasource_mplayer Restructure to standard maven/gradle layout. 8 лет назад
mediasource_vlc Restructure to standard maven/gradle layout. 8 лет назад
mediasource_windows Restructure to standard maven/gradle layout. 8 лет назад
nickcolours Minor style fixes 7 лет назад
nickkeep Use EventBus interface. 7 лет назад
nma Extend BaseCommand not Command. 7 лет назад
notifications Extend BaseCommand not Command. 7 лет назад
nowplaying Extend BaseCommand not Command. 7 лет назад
osd Extend BaseCommand not Command. 7 лет назад
osx_integration Extend BaseCommand not Command. 7 лет назад
parser_irc Restructure to standard maven/gradle layout. 8 лет назад
parser_xmpp Restructure to standard maven/gradle layout. 8 лет назад
parserdebug Extend BaseCommand not Command. 7 лет назад
qauth Migrate to new @GlobalConfig annotation. 7 лет назад
redirect Extend BaseCommand not Command. 7 лет назад
scriptplugin Extend BaseCommand not Command. 7 лет назад
sessionlock Restructure to standard maven/gradle layout. 8 лет назад
systray Extend BaseCommand not Command. 7 лет назад
tabcompletion_bash Restructure to standard maven/gradle layout. 8 лет назад
tabcompletion_mirc Minor style fixes 7 лет назад
time Extend BaseCommand not Command. 7 лет назад
ui_swing Extend BaseCommand not Command. 7 лет назад
ui_web2 Migrate to new @GlobalConfig annotation. 7 лет назад
whoisonquery Use EventBus interface. 7 лет назад
windowflashing Extend BaseCommand not Command. 7 лет назад
windowstatus Use new core class for static styliser methods 7 лет назад
.gitignore Restructure to standard maven/gradle layout. 8 лет назад
.gitreview Add .gitreview config. 9 лет назад
AUTHORS Fix LICENCE file name and add AUTHORS file. 10 лет назад
LICENCE 2015! 9 лет назад
README.md Add a 'provided' scope. 8 лет назад
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 Rename custom jar and test tasks in plugins. 7 лет назад
build.xml Collect plugin jars in dist folder, like before. 9 лет назад
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 Actually include plugins again. 8 лет назад

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.