forked from fkmhrk/KiiLib-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (28 loc) · 723 Bytes
/
Copy pathbuild.gradle
File metadata and controls
34 lines (28 loc) · 723 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
apply plugin: 'java'
apply plugin: 'maven'
configurations {
provided
}
sourceSets {
main.compileClasspath += configurations.provided
test.compileClasspath += configurations.provided
test.runtimeClasspath += configurations.provided
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
//provided 'org.json:json:20090211'
compile 'org.json:json:20090211'
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.11'
}
uploadArchives {
repositories.mavenDeployer {
repository url: "file://$System.env.HOME/.m2/repository"
pom.version = '2.3.1'
pom.groupId = 'jp.fkmsoft.libs'
pom.artifactId = 'KiiLib-Java'
}
}