Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
The Codacy Badger 0e8dd623ae Add Codacy badge 7 лет назад
audio Restructure to standard maven/gradle layout. 7 лет назад
awaycolours Migrate to new @GlobalConfig annotation. 7 лет назад
calc Minor style fixes 7 лет назад
channelwho Migrate to new @GlobalConfig annotation. 7 лет назад
conditional_execute Use EventBus interface. 7 лет назад
contactlist Use EventBus interface. 7 лет назад
dcc Minor style fixes 7 лет назад
dcop Restructure to standard maven/gradle layout. 7 лет назад
debug Migrate to new @GlobalConfig annotation. 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 Minor style fixes 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 Migrate to new @UserConfig annotation. 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 Minor style fixes 7 лет назад
nickkeep Use EventBus interface. 7 лет назад
nma Restructure to standard maven/gradle layout. 7 лет назад
notifications Migrate to new @GlobalConfig annotation. 7 лет назад
nowplaying Minor style fixes 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 Migrate to new @GlobalConfig annotation. 7 лет назад
redirect Use EventBus interface. 7 лет назад
scriptplugin Migrate to new @GlobalConfig annotation. 7 лет назад
sessionlock Restructure to standard maven/gradle layout. 7 лет назад
systray Migrate to new @GlobalConfig annotation. 7 лет назад
tabcompletion_bash Restructure to standard maven/gradle layout. 7 лет назад
tabcompletion_mirc Minor style fixes 7 лет назад
time Use EventBus interface. 7 лет назад
ui_swing Minor style fixes 7 лет назад
ui_web2 Migrate to new @GlobalConfig annotation. 7 лет назад
whoisonquery Use EventBus interface. 7 лет назад
windowflashing Migrate to new @GlobalConfig annotation. 7 лет назад
windowstatus Migrate to new @GlobalConfig annotation. 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 Codacy badge 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 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. 7 лет назад

README.md

DMDirc plugins

Codacy Badge

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.