-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
126 lines (104 loc) · 3 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
plugins {
id "com.jfrog.bintray" version "1.7.3"
}
group 'onethreeseven'
version '0.0.1-SNAPSHOT'
ext.moduleName = 'onethreeseven.roi'
allprojects {
repositories {
jcenter()
mavenCentral()
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'idea'
}
repositories {
maven { url 'https://github.com/lukehb/137-jars/raw/master/repository' } //spmf
//maven{url 'https://dl.bintray.com/lukehb/137-geo'} //geography module hosted on bintray
mavenCentral()
mavenLocal()
}
dependencies {
//spm
compile group: 'onethreeseven', name: 'spm', version: '0.0.1-SNAPSHOT'
//jcli
compile group: 'onethreeseven', name: 'jclimod', version: '0.0.1-SNAPSHOT'
//geo
compile (group: 'onethreeseven', name: 'geo', version: '0.0.4-SNAPSHOT') {force=true}
//data-structures
compile (group: 'onethreeseven', name: 'datastructures', version: '0.0.4-SNAPSHOT') {force = true}
//common
compile (group: 'onethreeseven', name: 'collections', version: '0.0.2')
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileJava {
inputs.property("moduleName", moduleName)
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
]
classpath = files()
}
}
compileTestJava {
inputs.property("moduleName", moduleName)
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'junit',
'--add-reads', "$moduleName=junit",
'--patch-module', "$moduleName=" + files(sourceSets.test.java.srcDirs).asPath,
]
classpath = files()
}
}
test {
inputs.property("moduleName", moduleName)
doFirst {
jvmArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'ALL-MODULE-PATH',
'--add-reads', "$moduleName=junit",
'--patch-module', "$moduleName=" + files(sourceSets.test.java.outputDir).asPath,
]
classpath = files()
}
}
jar {
inputs.property("moduleName", moduleName)
manifest {
attributes(
'Automatic-Module-Name': moduleName,
"Implementation-Title": project.name,
"Implementation-Version": version,
'Built-By': System.getProperty('user.name'),
'Built-Date': new Date(),
'Built-JDK': System.getProperty('java.version'))
}
}
jar.dependsOn(test)
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
javadoc{
options.addStringOption('-module-path', classpath.asPath)
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from 'build/docs/javadoc'
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
idea {
module {
inheritOutputDirs = true
downloadJavadoc = true
downloadSources = true
}
}