Skip to content

Commit e4b0aa9

Browse files
Release v1.0.5 (#57)
Signed-off-by: Philip Conrad <[email protected]>
1 parent ba9c8ae commit e4b0aa9

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Unreleased
44

5-
## 1.0.1, 1.0.2, 1.0.3, 1.0.4
5+
## 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5
66

77
These releases include release engineering improvements, with no significant code or dependency changes.
88
These are also the first releases since this project was donated to the `open-policy-agent` organization on Github.

build.gradle

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ plugins {
99
id("checkstyle")
1010
}
1111

12+
version = "${version}"
13+
group = "${groupId}"
14+
1215
compileJava.options.encoding = "UTF-8"
1316
compileJava.options.compilerArgs += '-Xlint:unchecked'
1417
compileTestJava.options.encoding = "UTF-8"
@@ -144,6 +147,14 @@ gradle.projectsEvaluated {
144147
}
145148
}
146149

150+
sourcesJar {
151+
archiveBaseName = "${artifactId}"
152+
}
153+
154+
javadocJar {
155+
archiveBaseName = "${artifactId}"
156+
}
157+
147158
sonatypeCentralUpload {
148159
// This is your Sonatype generated username
149160
username = System.getenv("SONATYPE_USERNAME")
@@ -180,7 +191,7 @@ publishing {
180191
description = 'A driver to connect Spring Boot applications to Open Policy Agent (OPA) and EOPA deployments'
181192
url = 'https://github.com/open-policy-agent/opa-springboot'
182193
scm {
183-
url = 'github.com/open-policy-agent/opa-springboot'
194+
url = 'https://github.com/open-policy-agent/opa-springboot'
184195
connection = 'scm:git:ssh://[email protected]/open-policy-agent/opa-springboot.git'
185196
}
186197
licenses {
@@ -198,7 +209,7 @@ publishing {
198209
}
199210
organization {
200211
name = 'Open Policy Agent'
201-
url = 'www.openpolicyagent.org'
212+
url = 'https://www.openpolicyagent.org'
202213
}
203214
}
204215
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
groupId=io.github.open-policy-agent.opa
22
artifactId=springboot
3-
version=1.0.4
3+
version=1.0.5

0 commit comments

Comments
 (0)