This repository has been archived by the owner on Nov 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change groupId io.github.xdiamond to io.github.hengyunabc.xdiamond. p…
…repare deploy to sonatype
- Loading branch information
1 parent
9e7395b
commit 79e354a
Showing
6 changed files
with
127 additions
and
30 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 |
---|---|---|
@@ -1,6 +1,35 @@ | ||
|
||
*\.settings* | ||
*\.project | ||
*\.classpath | ||
*\target* | ||
*\.idea* | ||
.gradle | ||
*.sw? | ||
.#* | ||
*# | ||
*~ | ||
/build | ||
/code | ||
.classpath | ||
.project | ||
.settings | ||
.metadata | ||
.factorypath | ||
.recommenders | ||
bin | ||
build | ||
lib/ | ||
target | ||
.springBeans | ||
interpolated*.xml | ||
dependency-reduced-pom.xml | ||
build.log | ||
_site/ | ||
.*.md.html | ||
manifest.yml | ||
MANIFEST.MF | ||
settings.xml | ||
activemq-data | ||
overridedb.* | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea | ||
*.jar | ||
.DS_Store | ||
.factorypath |
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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<project | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>io.github.xdiamond</groupId> | ||
<parent> | ||
<groupId>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>9</version> | ||
</parent> | ||
|
||
<groupId>io.github.hengyunabc.xdiamond</groupId> | ||
<artifactId>xdiamond-rootpom</artifactId> | ||
<packaging>pom</packaging> | ||
<version>1.0.1-SNAPSHOT</version> | ||
|
@@ -13,20 +20,67 @@ | |
</properties> | ||
|
||
<name>xdiamond-rootpom</name> | ||
<description>Xdiamond is a project contains distributed configuration server and client.</description> | ||
<url>https://github.com/hengyunabc/xdiamond</url> | ||
<inceptionYear>2015</inceptionYear> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache 2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
<comments>A business-friendly OSS license</comments> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>hengyunabc</id> | ||
<name>hengyunabc</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:hengyunabc/xdiamond.git</connection> | ||
<developerConnection>scm:git:[email protected]:hengyunabc/xdiamond.git</developerConnection> | ||
<url>https://github.com/hengyunabc/xdiamond</url> | ||
</scm> | ||
|
||
<modules> | ||
<module>xdiamond-common</module> | ||
<module>xdiamond-client</module> | ||
<module>xdiamond-server</module> | ||
</modules> | ||
|
||
<repositories> | ||
<repository> | ||
<id>hengyunabc-maven-repo</id> | ||
<url>https://raw.githubusercontent.com/hengyunabc/maven-repo/master/repository</url> | ||
</repository> | ||
</repositories> | ||
<profiles> | ||
<profile> | ||
<id>release-sign-artifacts</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>true</value> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<build> | ||
<plugins> | ||
|
@@ -61,6 +115,23 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
<configuration> | ||
<!-- add this to disable checking --> | ||
<additionalparam>-Xdoclint:none</additionalparam> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
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
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