forked from jessecoyle/jcredstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
131 lines (106 loc) · 3.39 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
plugins {
id 'java'
id 'maven'
id 'signing'
id 'net.researchgate.release' version '2.4.1'
id 'com.github.ben-manes.versions' version '0.13.0'
}
ext {
junitVersion = '4.12'
awsSdkVersion = '1.11.63'
bouncycastleVersion = '1.55'
hamcrestVersion = '1.3'
}
group = 'co.wrisk.jcredstash'
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.deprecation = true
}
compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.deprecation = true
}
dependencies {
compile "com.amazonaws:aws-java-sdk-kms:$awsSdkVersion"
compile "com.amazonaws:aws-java-sdk-dynamodb:$awsSdkVersion"
compile "org.bouncycastle:bcprov-jdk15on:$bouncycastleVersion"
testCompile "junit:junit:${junitVersion}"
testCompile "org.hamcrest:hamcrest-all:${hamcrestVersion}"
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
required { !version.contains("SNAPSHOT") }
sign configurations.archives
}
task resolveDependencies {
doLast {
project.rootProject.allprojects.each { subProject ->
subProject.buildscript.configurations.each { configuration ->
configuration.resolve()
}
subProject.configurations.each { configuration ->
configuration.resolve()
}
}
}
}
afterReleaseBuild.dependsOn uploadArchives
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'JCredStash'
packaging 'jar'
// optionally artifactId can be defined here
description 'A pure Java implementation of the CredStash utility originally in Python'
url 'https://github.com/WriskHQ/jcredstash'
scm {
connection 'scm:git:[email protected]:WriskHQ/jcredstash.git'
developerConnection 'scm:git:[email protected]:WriskHQ/jcredstash.git'
url 'https://github.com/WriskHQ/jcredstash'
}
licenses {
license {
name 'Apache Licence'
url 'https://raw.githubusercontent.com/WriskHQ/jcredstash/master/LICENSE'
}
}
developers {
developer {
name 'Jesse Coyle'
email '[email protected]'
}
developer {
name 'Alex Harin'
email '[email protected]'
}
}
}
}
}
}