Merge pull request #25 from kakulisen/master

SCB-1459 Add information about the release
diff --git a/pom.xml b/pom.xml
index 5a207b7..3bf71bb 100755
--- a/pom.xml
+++ b/pom.xml
@@ -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>
@@ -41,6 +47,21 @@
     </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>
@@ -48,6 +69,11 @@
     </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>
@@ -55,6 +81,26 @@
 
   <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>
@@ -283,6 +329,10 @@
         <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>
             <version>1.6</version>
             <executions>