-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some changes related to release (#256)
- Loading branch information
Showing
2 changed files
with
24 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,19 @@ apply plugin: 'maven' | |
apply plugin: 'signing' | ||
|
||
artifacts { | ||
archives javadocJar, sourcesJar, testJar | ||
archives javadocJar, sourcesJar, testJar, testSourcesJar | ||
} | ||
|
||
signing { | ||
sign configurations.archives | ||
} | ||
|
||
configurations.archives.artifacts.removeAll { | ||
// exclude from the archives configuration all artifacts that were generated by distZip & distTar | ||
def depTasks = it.getBuildDependencies().getDependencies() | ||
depTasks.contains(distZip) || depTasks.contains(distTar) | ||
} | ||
|
||
uploadArchives { | ||
repositories { | ||
mavenDeployer { | ||
|
@@ -48,6 +54,11 @@ uploadArchives { | |
name 'Hiroyuki Yamada' | ||
email '[email protected]' | ||
} | ||
developer { | ||
id 'brfrn169' | ||
name 'Toshihiro Suzuki' | ||
email '[email protected]' | ||
} | ||
} | ||
} | ||
} | ||
|
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