Skip to content

Commit

Permalink
Merge 63064bf into 91f93ab
Browse files Browse the repository at this point in the history
  • Loading branch information
kakulisen committed Aug 23, 2019
2 parents 91f93ab + 63064bf commit 045a191
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pom.xml
Expand Up @@ -21,6 +21,12 @@
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>

<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>18</version>
</parent>

<groupId>org.apache.servicecomb.toolkit</groupId>
<artifactId>toolkit</artifactId>
<version>0.1.0-SNAPSHOT</version>
Expand All @@ -41,20 +47,60 @@
</license>
</licenses>

<mailingLists>
<mailingList>
<name>Development List</name>
<subscribe>dev-subscribe@servicecomb.apache.org</subscribe>
<unsubscribe>dev-unsubscribe@servicecomb.apache.org</unsubscribe>
<post>dev@servicecomb.apache.org</post>
</mailingList>
<mailingList>
<name>Commits List</name>
<subscribe>commits-subscribe@servicecomb.apache.org</subscribe>
<unsubscribe>commits-unsubscribe@servicecomb.apache.org</unsubscribe>
<post>commits@servicecomb.apache.org</post>
</mailingList>
</mailingLists>

<developers>
<developer>
<name>The ServiceComb Developer Team</name>
<email>dev@servicecomb.apache.org</email>
</developer>
</developers>

<issueManagement>
<system>jira</system>
<url>https://issues.apache.org/jira/browse/SCB</url>
</issueManagement>

<organization>
<name>The Apache Software Foundation</name>
<url>http://www.apache.org/</url>
</organization>

<inceptionYear>2019</inceptionYear>

<scm>
<url>https://github.com/apache/servicecomb-toolkit</url>
<connection>scm:git:https://github.com/apache/servicecomb-toolkit.git</connection>
<developerConnection>scm:git:https://github.com/apache/servicecomb-toolkit.git</developerConnection>
<tag>v${project.version}</tag>
</scm>

<distributionManagement>
<repository>
<id>apache.releases.https</id>
<name>Apache Release Distribution Repository</name>
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>apache.snapshots.https</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<modules>
<module>codegen</module>
<module>cli</module>
Expand Down Expand Up @@ -281,6 +327,10 @@
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down

0 comments on commit 045a191

Please sign in to comment.