-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
136 lines (117 loc) · 4.63 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
buildscript {
ext {
springBootVersion = '1.5.1.RELEASE'
// Spring Boot 1.5.1 uses mockito-core:1.10.19 (https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test/1.5.1.RELEASE)
powerMockVersion = '1.7.4';
}
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/groups/public" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
classpath("pl.allegro.tech.build:axion-release-plugin:1.8.1")
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'maven-publish'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'pl.allegro.tech.build.axion-release'
group = 'uk.ac.ebi.tsc.aap.client'
scmVersion {
tag {
prefix = 'aap' // this must be followed by a - in the actual tags
}
}
version = scmVersion.version
repositories {
maven { url "https://oss.sonatype.org/content/groups/public" }
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter")
compile("com.fasterxml.jackson.core:jackson-annotations:2.8.11") // from 2.9, cannot use @JsonIgnore
testCompile("com.google.guava:guava:24.1-jre")
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile("org.powermock:powermock-core:$powerMockVersion")
testCompile("org.powermock:powermock-module-junit4:$powerMockVersion")
testCompile("org.powermock:powermock-api-mockito:$powerMockVersion")
compile (group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.5')
}
bootRepackage {
enabled = false
}
task sourceJar(type: Jar) { from sourceSets.main.allJava }
task testJar(type: Jar, dependsOn: testClasses) {
classifier = 'tests'
from sourceSets.test.output
}
artifacts {
archives jar
archives sourceJar
archives testJar
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourceJar { classifier "sources" }
artifact testJar { classifier "tests" }
}
}
}
signing {
required = { gradle.taskGraph.hasTask(":model:uploadArchives") }
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2") {
authentication(userName: project.hasProperty('ossrhUsername')? ossrhUsername: '', password: project.hasProperty('ossrhPassword')? ossrhPassword: '')
//authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots") {
authentication(userName: project.hasProperty('ossrhUsername')? ossrhUsername: '', password: project.hasProperty('ossrhPassword')? ossrhPassword: '')
//authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'aap-client-java'
packaging 'jar'
// optionally artifactId can be defined here
description 'EBI TSC AAP Client'
url 'https://github.com/EMBL-EBI-TSI/aap-client-java'
scm {
url 'https://github.com/EMBL-EBI-TSI/aap-client-java'
}
licenses {
license {
name 'The Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'ameliec'
name 'Amélie Cornélis'
email 'ameliec@ebi.ac.uk'
}
developer {
id 'neilg'
name 'Neil Goodgame'
email 'neilg@ebi.ac.uk'
}
}
}
}
}
}
}