-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathbuild.gradle
139 lines (116 loc) · 3.81 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
126
127
128
129
130
131
132
133
134
135
136
137
138
plugins {
id 'java'
id 'maven'
id 'signing'
}
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
group = "co.paralleluniverse"
version = "0.1.0"
status = "integration"
description = "Java FileSystem as FUSE"
ext.url = "http://puniverse.github.com/javafs"
ext.vendor = "Parallel Universe Software Co."
ext.licenseName = "GNU General Public License, version 2, with the Classpath Exception"
ext.licenseUrl = "http://openjdk.java.net/legal/gplv2+ce.html"
ext.scmUrl = "https://github.com/puniverse/javafs"
ext.scmConnection = "https://github.com/puniverse/javafs.git"
ext.distDir = "$buildDir/dist"
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
repositories {
mavenCentral()
}
dependencies {
compile 'com.github.jnr:jnr-ffi:2.0.3'
compile 'com.github.jnr:jnr-posix:3.0.17'
testCompile 'junit:junit:4.12'
testCompile 'org.truth0:truth:0.23'
testCompile 'com.google.jimfs:jimfs:1.0'
}
tasks.withType(JavaExec) {
classpath += sourceSets.test.runtimeClasspath
}
javadoc {
options {
links = [ "http://docs.oracle.com/javase/7/docs/api/" ]
noDeprecated = true
addStringOption('public', '-quiet')
}
excludes = [
"co/paralleluniverse/fuse/**",
"co/paralleluniverse/filesystem/**",
"jnr/**",
]
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
if (!project.hasProperty("sonatypeUsername") || !project.hasProperty("sonatypePassword")) {
println "sonatype username or password not set"
ext.sonatypeUsername = ""
ext.sonatypePassword = ""
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { deployment -> signing.signPom(deployment) }
repository(
url: (isReleaseVersion ?
"https://oss.sonatype.org/service/local/staging/deploy/maven2" :
"https://oss.sonatype.org/content/repositories/snapshots")) {
// User and Password are taken from ~/.gradle/gradle.properties
authentication(userName: project.sonatypeUsername, password: project.sonatypePassword)
}
pom.project {
name project.name
packaging 'jar'
description project.description
url project.url
scm {
url project.scmUrl
connection project.scmConnection
developerConnection project.scmConnection
}
licenses {
license {
name project.licenseName
url project.licenseUrl
distribution 'repo'
}
}
developers {
developer {
id 'pron'
name 'Ron Pressler'
}
}
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}
task('run', type: JavaExec, dependsOn:[testClasses]) {
classpath = sourceSets.main.runtimeClasspath + sourceSets.test.runtimeClasspath
main = 'co.paralleluniverse.javafs.Main'
if(project.hasProperty('args')){
args project.args.split('\\s+')
}
// systemProperty 'jnr.ffi.compile.dump', 'true'
}