-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
141 lines (115 loc) · 3.8 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
139
140
141
defaultTasks 'clean', 'javadoc', 'test', 'check', 'checkstyleMain', 'checkstyleTest', 'assemble'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'net.researchgate:gradle-release:2.4.0'
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'checkstyle'
apply plugin: 'jacoco'
apply plugin: 'findbugs'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'net.researchgate.release'
version = "1.1"
check.dependsOn jacocoTestReport
bintrayUpload.dependsOn 'jar', 'sourceJar', 'javadocJar'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
javadoc {
options.encoding = 'UTF-8'
}
checkstyle {
toolVersion = "6.0"
}
repositories {
jcenter()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.25'
testCompile 'org.slf4j:slf4j-simple:1.7.25'
testCompile 'junit:junit:4.12'
}
checkstyle {
configFile = new File(rootDir, "config/checkstyle.xml")
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
release {
failOnUnversionedFiles = false
}
jar {
manifest {
attributes("Specification-Title": "LPD-Server framework",
"Implementation-Title": "lpdbox",
"Implementation-Version": version,
"Implementation-Vendor": "https://github.com/michaelknigge/lpdbox",
"Created-By": System.getProperty('java.version') + ' (' + System.getProperty('java.vendor') + ')',
"Class-Path": configurations.compile.collect { it.getName() }.join(' '))
}
}
bintray {
user = project.hasProperty('bintray.user') ? project.property('bintray.user') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintray.key') ? project.property('bintray.key') : System.getenv('BINTRAY_KEY')
publications = ['maven']
publish = true
pkg {
repo = 'maven'
name = 'lpdbox'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/michaelknigge/lpdbox.git'
websiteUrl = 'https://github.com/michaelknigge/lpdbox'
issueTrackerUrl = 'https://github.com/michaelknigge/lpdbox/issues'
labels = ['lpd','lpr','printserver']
publicDownloadNumbers = true
githubRepo = 'michaelknigge/lpdbox'
version {
name = project.version
desc = "lpdbox version ${project.version}"
released = new Date()
vcsTag = "${project.version}"
gpg {
sign = true
}
}
}
}
task sourceJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allJava
}
task javadocJar (type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact sourceJar {
classifier 'sources'
}
artifact (javadocJar) {
classifier = 'javadoc'
}
groupId 'de.textmode.lpdbox'
artifactId 'lpdbox'
version "${project.version}"
}
}
}
}