Skip to content

Commit

Permalink
Fix pom attributes, update readme to reflect new dependencies. (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Feb 6, 2023
1 parent 60f4e58 commit 310d307
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Barclay is a set of classes for annotating, parsing, validating, and generating documentation for command line options.

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

10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ def basePomConfiguration = {
}

scm {
url 'scm:git@github.com:broadinstitute/barclay.git'
connection 'scm:git@github.com:broadinstitute/barclay.git'
developerConnection 'scm:git@github.com:broadinstitute/barclay.git'
url = 'scm:git@github.com:broadinstitute/barclay.git'
connection = 'scm:git@github.com:broadinstitute/barclay.git'
developerConnection = 'scm:git@github.com:broadinstitute/barclay.git'
}

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

artifact javadocJar
Expand Down

0 comments on commit 310d307

Please sign in to comment.