-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
68 lines (59 loc) · 1.94 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
plugins {
id 'java'
}
apply plugin: 'maven'
group 'com.acrosure'
version '0.4.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile(
[group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.10.0'],
[group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'],
)
testCompile(
[group: 'org.junit.platform', name: 'junit-platform-commons', version: '1.2.0'],
[group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.2.0'],
[group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.2.0'],
[group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3']
)
}
task newPom {
pom {
project {
name 'com.acrosure: acrosure-java-sdk'
description 'Java SDK for connecting with Acrosure Insurance Gateway'
url 'https://github.com/Acrosure/acrosure-java-sdk'
licenses {
license {
name 'MIT License'
url 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
name 'Srikote Naewchampa'
email '[email protected]'
organization 'Acrosure'
organizationUrl 'https://acrosure.com'
}
}
scm {
connection 'scm:git:git://github.com/Acrosure/acrosure-java-sdk.git'
developerConnection 'scm:git:ssh://github.com:Acrosure/acrosure-java-sdk.git'
url 'http://github.com/Acrosure/acrosure-java-sdk/tree/master'
}
}.writeTo("$buildDir/newpom.xml")
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}