-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release] configuration needed for publishing to maven central.
* add project url, license, and developer section to pom * add distribution information to pom. * add source, javadoc, and signing plugins
- Loading branch information
Showing
3 changed files
with
144 additions
and
0 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
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 |
---|---|---|
|
@@ -30,11 +30,56 @@ LICENSE file. | |
This is the top level project that builds, packages the core and all the DB bindings for YCSB infrastructure. | ||
</description> | ||
|
||
<url>https://ycsb.site/</url> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<!-- Please see git for authorship information. | ||
This list is project maintainers --> | ||
<developer> | ||
<id>allanbank</id> | ||
<name>Robert J. Moore</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>busbey</id> | ||
<name>Sean Busbey</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>cmatser</id> | ||
<name>Chrisjan Matser</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>stfeng2</id> | ||
<name>Stanley Feng</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/brianfrankcooper/YCSB.git</connection> | ||
<tag>master</tag> | ||
<url>https://github.com/brianfrankcooper/YCSB</url> | ||
</scm> | ||
<distributionManagement> | ||
<repository> | ||
<id>sonatype.releases.https</id> | ||
<name>Release Repo at sonatype oss.</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>sonatype.snapshots.https</id> | ||
<name>snapshot Repo at sonatype oss.</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
|
@@ -230,4 +275,65 @@ LICENSE file. | |
</plugin> | ||
</plugins> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<!-- plugins needed to pass sonatype repo checks --> | ||
<id>ycsb-release</id> | ||
<properties> | ||
<doclint>none</doclint> | ||
</properties> | ||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.1.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.6</version> | ||
<executions> | ||
<execution> | ||
<id>sign-release-artifacts</id> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |