Skip to content

Commit

Permalink
Merge pull request #3 from TogetherOS/fix-maven-1.0.1
Browse files Browse the repository at this point in the history
Fix maven 1.0.1
  • Loading branch information
crossoverJie authored Sep 4, 2018
2 parents 4de9694 + 2b4b1f4 commit 4ff3c2e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>top.crossoverjie.opensource</groupId>
<artifactId>cicada-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Create a project with `Maven`, import core dependency.
<dependency>
<groupId>top.crossoverjie.opensource</groupId>
<artifactId>cicada-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

Expand Down
10 changes: 8 additions & 2 deletions cicada-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,23 @@
<parent>
<artifactId>cicada</artifactId>
<groupId>top.crossoverjie.opensource</groupId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>cicada-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<name>cicada-core</name>
<description>Fast, lightweight Web framework based on Netty</description>
<url>https://crossoverjie.top/categories/cicada/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions cicada-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<parent>
<artifactId>cicada</artifactId>
<groupId>top.crossoverjie.opensource</groupId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<version>1.0.0</version>
<version>1.0.1</version>

<artifactId>cicada-example</artifactId>
<packaging>jar</packaging>
Expand All @@ -18,7 +18,7 @@
<dependency>
<groupId>top.crossoverjie.opensource</groupId>
<artifactId>cicada-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>

</dependencies>
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@
<groupId>top.crossoverjie.opensource</groupId>
<artifactId>cicada</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<version>1.0.1</version>

<name>cicada</name>
<description>Fast, lightweight Web framework based on Netty</description>
<url>https://crossoverjie.top/categories/cicada/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<modules>
<module>cicada-core</module>
Expand Down

0 comments on commit 4ff3c2e

Please sign in to comment.