Prepare for the first release

update pom
This commit is contained in:
StyleTang
2021-09-17 00:03:57 +08:00
parent 0614bc499e
commit ef3a27d642
2 changed files with 15 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ mvn spring-boot:run
or
```
mvn clean package -Dmaven.test.skip=true
java -jar target/rocketmq-dashboard-1.0.0.jar
java -jar target/rocketmq-dashboard-1.0.0-SNAPSHOT.jar
```
#### Tips

19
pom.xml
View File

@@ -16,9 +16,7 @@
~ limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.apache</groupId>
@@ -30,9 +28,16 @@
<groupId>org.apache</groupId>
<artifactId>rocketmq-dashboard</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<version>1.0.0-SNAPSHOT</version>
<name>rocketmq-dashboard</name>
<scm>
<url>git@github.com:apache/rocketmq-dashboard.git</url>
<connection>scm:git:git@github.com:apache/rocketmq-dashboard.git</connection>
<developerConnection>scm:git:git@github.com:apache/rocketmq-dashboard.git</developerConnection>
<tag>1.0.0-beta</tag>
</scm>
<mailingLists>
<mailingList>
<name>Development List</name>
@@ -62,6 +67,11 @@
</developer>
</developers>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
@@ -356,5 +366,4 @@
</plugin>
</plugins>
</build>
</project>