Skip to content

Commit 4ff3c2e

Browse files
authored
Merge pull request #3 from TogetherOS/fix-maven-1.0.1
Fix maven 1.0.1
2 parents 4de9694 + 2b4b1f4 commit 4ff3c2e

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

README-ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>top.crossoverjie.opensource</groupId>
4444
<artifactId>cicada-core</artifactId>
45-
<version>1.0.0</version>
45+
<version>1.0.1</version>
4646
</dependency>
4747
```
4848

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Create a project with `Maven`, import core dependency.
4747
<dependency>
4848
<groupId>top.crossoverjie.opensource</groupId>
4949
<artifactId>cicada-core</artifactId>
50-
<version>1.0.0</version>
50+
<version>1.0.1</version>
5151
</dependency>
5252
```
5353

cicada-core/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@
55
<parent>
66
<artifactId>cicada</artifactId>
77
<groupId>top.crossoverjie.opensource</groupId>
8-
<version>1.0.0</version>
8+
<version>1.0.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>cicada-core</artifactId>
13-
<version>1.0.0</version>
13+
<version>1.0.1</version>
1414
<packaging>jar</packaging>
1515

1616
<name>cicada-core</name>
1717
<description>Fast, lightweight Web framework based on Netty</description>
1818
<url>https://crossoverjie.top/categories/cicada/</url>
19+
<licenses>
20+
<license>
21+
<name>The Apache Software License, Version 2.0</name>
22+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23+
</license>
24+
</licenses>
1925

2026
<dependencies>
2127
<dependency>

cicada-example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<parent>
66
<artifactId>cicada</artifactId>
77
<groupId>top.crossoverjie.opensource</groupId>
8-
<version>1.0.0</version>
8+
<version>1.0.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
11-
<version>1.0.0</version>
11+
<version>1.0.1</version>
1212

1313
<artifactId>cicada-example</artifactId>
1414
<packaging>jar</packaging>
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>top.crossoverjie.opensource</groupId>
2020
<artifactId>cicada-core</artifactId>
21-
<version>1.0.0</version>
21+
<version>1.0.1</version>
2222
</dependency>
2323

2424
</dependencies>

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@
77
<groupId>top.crossoverjie.opensource</groupId>
88
<artifactId>cicada</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0.0</version>
10+
<version>1.0.1</version>
1111

1212
<name>cicada</name>
1313
<description>Fast, lightweight Web framework based on Netty</description>
1414
<url>https://crossoverjie.top/categories/cicada/</url>
15+
<licenses>
16+
<license>
17+
<name>The Apache Software License, Version 2.0</name>
18+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19+
</license>
20+
</licenses>
1521

1622
<modules>
1723
<module>cicada-core</module>

0 commit comments

Comments
 (0)