Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pom attributes, update readme to reflect new dependencies. #191

Merged
merged 2 commits into from
Feb 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the mysteries of groovy....

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. It never ceases to entertain.

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