forked from sermant-io/Sermant
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request sermant-io#1566 from hanbingleixue/publish-1
Modify plugins and configurations for version release
- Loading branch information
Showing
7 changed files
with
86 additions
and
46 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>io.sermant</groupId> | ||
<artifactId>sermant</artifactId> | ||
|
@@ -22,9 +22,10 @@ | |
</scm> | ||
<developers> | ||
<developer> | ||
<name>luanwenfei</name> | ||
<id>luanwenfei-venus</id> | ||
<email>[email protected]</email> | ||
<name>sermant</name> | ||
<id>sermant</id> | ||
<email>[email protected]</email> | ||
<url>https://github.com/sermant-io/Sermant</url> | ||
<roles> | ||
<role>Developer</role> | ||
</roles> | ||
|
@@ -81,6 +82,7 @@ | |
<gpg.plugin.version>3.0.1</gpg.plugin.version> | ||
<javadoc.plugin.version>3.3.2</javadoc.plugin.version> | ||
<nexus.staging.plugin.version>1.6.7</nexus.staging.plugin.version> | ||
<central.publishing.maven.plugin.version>0.5.0</central.publishing.maven.plugin.version> | ||
<frontend.plugin.version>1.12.1</frontend.plugin.version> | ||
|
||
<sermant.name>sermant-agent</sermant.name> | ||
|
@@ -436,14 +438,14 @@ | |
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>${nexus.staging.plugin.version}</version> | ||
<groupId>org.sonatype.central</groupId> | ||
<artifactId>central-publishing-maven-plugin</artifactId> | ||
<version>${central.publishing.maven.plugin.version}</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>false</autoReleaseAfterClose> | ||
<publishingServerId>sermant</publishingServerId> | ||
<autoPublish>false</autoPublish> | ||
<tokenAuth>true</tokenAuth> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
|
@@ -456,16 +458,6 @@ | |
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
</profile> | ||
</profiles> | ||
<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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,33 @@ | |
|
||
<artifactId>sermant-agentcore-god</artifactId> | ||
|
||
<description>The core interface package of Sermant.</description> | ||
<url>https://github.com/sermant-io/Sermant</url> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>https://github.com/sermant-io/Sermant</url> | ||
<connection>scm:git:git://github.com/sermant-io/Sermant.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:sermant-io/Sermant.git</developerConnection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<name>sermant</name> | ||
<id>sermant</id> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Project Manager</role> | ||
<role>Developer</role> | ||
</roles> | ||
<timezone>+8</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<maven.compiler.source>8</maven.compiler.source> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,33 @@ | |
|
||
<artifactId>sermant-agentcore-implement</artifactId> | ||
|
||
<description>The specific implementation of Sermant's core competencies and agent framework.</description> | ||
<url>https://github.com/sermant-io/Sermant</url> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>https://github.com/sermant-io/Sermant</url> | ||
<connection>scm:git:git://github.com/sermant-io/Sermant.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:sermant-io/Sermant.git</developerConnection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<name>sermant</name> | ||
<id>sermant</id> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Project Manager</role> | ||
<role>Developer</role> | ||
</roles> | ||
<timezone>+8</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<maven.compiler.source>8</maven.compiler.source> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
|
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