-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (28 loc) · 820 Bytes
/
build.gradle
File metadata and controls
36 lines (28 loc) · 820 Bytes
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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'application'
//apply plugin: 'findbugs' -- findbugs does not work with java version 9
repositories {
mavenCentral()
mavenLocal()
maven {
url = 'http://maptool.craigs-stuff.net/repo/'
}
}
dependencies {
compile 'net.rptools.rplib:rplib:1.4.1.4'
compile 'net.rptools.dicelib:dicelib:1.4.0.1'
compile group: 'com.thoughtworks.xstream', name: 'xstream', version: '1.3.1'
testCompile 'rhino:js:1.6R2'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
version='1.4.0'
project.version = version
install {
repositories.mavenInstaller {
pom.version = project.version
pom.artifactId = 'dicetool'
pom.groupId = 'net.rptools'
}
}
mainClassName = 'net.rptools.dicetool.DiceTool'