Skip to content

Commit e995792

Browse files
committed
upload 1.0.2 version
* change fastjson 2.0.7
1 parent 027d200 commit e995792

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.codingapi.springboot</groupId>
1212
<artifactId>springboot-framework-parent</artifactId>
13-
<version>1.0.1</version>
13+
<version>1.0.2</version>
1414

1515
<url>https://github.com/codingapi/springboot-framewrok</url>
1616
<name>springboot-framework-parent</name>
@@ -29,6 +29,8 @@
2929
<maven.javadoc.plugin>2.10.3</maven.javadoc.plugin>
3030
<nexus.staging.maven.plugin>1.6.3</nexus.staging.maven.plugin>
3131

32+
<fastjson.version>2.0.7</fastjson.version>
33+
3234
</properties>
3335

3436

@@ -54,6 +56,16 @@
5456
</dependency>
5557
</dependencies>
5658

59+
<dependencyManagement>
60+
<dependencies>
61+
<dependency>
62+
<groupId>com.alibaba</groupId>
63+
<artifactId>fastjson</artifactId>
64+
<version>${fastjson.version}</version>
65+
</dependency>
66+
</dependencies>
67+
</dependencyManagement>
68+
5769
<build>
5870
<plugins>
5971
<plugin>

springboot-data-permission/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-framework-parent</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>1.0.1</version>
8+
<version>1.0.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.codingapi.springboot</groupId>
3434
<artifactId>springboot-framework</artifactId>
35-
<version>1.0.1</version>
35+
<version>1.0.2</version>
3636
</dependency>
3737

3838
<dependency>

springboot-example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<parent>
55
<groupId>com.codingapi.springboot</groupId>
66
<artifactId>springboot-framework-parent</artifactId>
7-
<version>1.0.1</version>
7+
<version>1.0.2</version>
88
</parent>
99
<artifactId>springboot-example</artifactId>
10-
<version>1.0.1</version>
10+
<version>1.0.2</version>
1111

1212
<name>springboot-example</name>
1313
<description>springboot-example project for Spring Boot</description>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.codingapi.springboot</groupId>
3131
<artifactId>springboot-framework</artifactId>
32-
<version>1.0.1</version>
32+
<version>1.0.2</version>
3333
</dependency>
3434

3535
<dependency>

springboot-framework/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@
44
<parent>
55
<groupId>com.codingapi.springboot</groupId>
66
<artifactId>springboot-framework-parent</artifactId>
7-
<version>1.0.1</version>
7+
<version>1.0.2</version>
88
</parent>
99
<artifactId>springboot-framework</artifactId>
10-
<version>1.0.1</version>
10+
<version>1.0.2</version>
1111

1212
<name>springboot-framework</name>
1313
<description>springboot-framework project for Spring Boot</description>
1414
<properties>
1515
<java.version>1.8</java.version>
16-
<fastjson.version>2.0.9</fastjson.version>
1716
</properties>
1817

1918
<dependencies>
@@ -25,7 +24,6 @@
2524
<dependency>
2625
<groupId>com.alibaba</groupId>
2726
<artifactId>fastjson</artifactId>
28-
<version>${fastjson.version}</version>
2927
</dependency>
3028

3129
</dependencies>

0 commit comments

Comments
 (0)