-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (29 loc) · 861 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
apply plugin: 'java'
group = 'com.github.jlmelville'
version = '0.1'
description = """beaTunes plugin that writes AcousticBrainz fingerprints to disk"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
maven { url "https://www.beatunes.com/repo/maven2" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile(group: 'com.tagtraum', name: 'beatunes', version:'5.0.0') {
exclude(module: 'jai-codec')
exclude(module: 'jai-core')
exclude(module: 'mac_widgets')
exclude(module: 'jaudiotagger')
exclude(module: 'jta')
}
}
processResources {
filesMatching("**/plugin.xml") {
expand project.properties
}
}
task dist(type: Copy, group: "Custom", description: "Copies jar to the dist directory") {
from "build/libs"
into "dist"
}