Skip to content

Commit 310d307

Browse files
authored
Fix pom attributes, update readme to reflect new dependencies. (#191)
1 parent 60f4e58 commit 310d307

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Barclay is a set of classes for annotating, parsing, validating, and generating documentation for command line options.
66

77
##Requirements
8-
* Java 8
9-
* Gradle 3.1 or greater. We recommend using the `./gradlew` script which will
8+
* Java 17
9+
* Gradle 7.4.2 or greater. We recommend using the `./gradlew` script which will
1010
download and use an appropriate gradle version automatically.
1111

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ def basePomConfiguration = {
134134
}
135135

136136
scm {
137-
url 'scm:git@github.com:broadinstitute/barclay.git'
138-
connection 'scm:git@github.com:broadinstitute/barclay.git'
139-
developerConnection 'scm:git@github.com:broadinstitute/barclay.git'
137+
url = 'scm:git@github.com:broadinstitute/barclay.git'
138+
connection = 'scm:git@github.com:broadinstitute/barclay.git'
139+
developerConnection = 'scm:git@github.com:broadinstitute/barclay.git'
140140
}
141141

142142
licenses {
@@ -152,14 +152,14 @@ def basePomConfiguration = {
152152
* Upload a release to sonatype. You must be an authorized uploader and have your sonatype
153153
* username and password information in your gradle properties file. See the readme for more info.
154154
*
155-
* For releasing to your local maven repo, use gradle install
155+
* For releasing to your local maven repo, use gradle publishToMavenLocal
156156
*/
157157
publishing {
158158
publications {
159159
barclay(MavenPublication) {
160160
from components.java
161161
artifactId = "barclay"
162-
pom { basePomConfiguration}
162+
pom basePomConfiguration
163163
pom.name = "Barclay"
164164

165165
artifact javadocJar

0 commit comments

Comments
 (0)