-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pom attributes, update readme to reflect new dependencies. (#191)
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,9 +134,9 @@ def basePomConfiguration = { | |
} | ||
|
||
scm { | ||
url 'scm:[email protected]:broadinstitute/barclay.git' | ||
connection 'scm:[email protected]:broadinstitute/barclay.git' | ||
developerConnection 'scm:[email protected]:broadinstitute/barclay.git' | ||
url = 'scm:[email protected]:broadinstitute/barclay.git' | ||
connection = 'scm:[email protected]:broadinstitute/barclay.git' | ||
developerConnection = 'scm:[email protected]:broadinstitute/barclay.git' | ||
} | ||
|
||
licenses { | ||
|
@@ -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 | ||
|