Skip to content

Commit e51daaa

Browse files
committed
1.2.27 release
1 parent 88d90f1 commit e51daaa

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.alibaba</groupId>
66
<artifactId>druid-parent</artifactId>
7-
<version>1.2.27-SNAPSHOT</version>
7+
<version>1.2.27</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>druid</artifactId>

druid-demo-petclinic/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>com.alibaba</groupId>
3636
<artifactId>druid-spring-boot-starter</artifactId>
37-
<version>1.2.27-SNAPSHOT</version>
37+
<version>1.2.27</version>
3838
</dependency>
3939
<!-- Spring and Spring Boot dependencies -->
4040
<dependency>

druid-spring-boot-3-starter/pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.alibaba</groupId>
77
<artifactId>druid-parent</artifactId>
8-
<version>1.2.27-SNAPSHOT</version>
8+
<version>1.2.27</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>druid-spring-boot-3-starter</artifactId>
@@ -53,44 +53,52 @@
5353
<dependency>
5454
<groupId>org.slf4j</groupId>
5555
<artifactId>slf4j-api</artifactId>
56+
<version>2.0.17</version>
5657
</dependency>
5758
<dependency>
5859
<groupId>org.springframework.boot</groupId>
5960
<artifactId>spring-boot-autoconfigure</artifactId>
61+
<version>${springboot3.version}</version>
6062
</dependency>
6163
<dependency>
6264
<groupId>org.springframework</groupId>
6365
<artifactId>spring-jdbc</artifactId>
66+
<version>6.1.21</version>
6467
<optional>true</optional>
6568
</dependency>
6669
<!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
6770
<dependency>
6871
<groupId>org.springframework.boot</groupId>
6972
<artifactId>spring-boot-configuration-processor</artifactId>
73+
<version>${springboot3.version}</version>
7074
<optional>true</optional>
7175
</dependency>
7276

7377
<dependency>
7478
<groupId>org.springframework.boot</groupId>
7579
<artifactId>spring-boot-starter-web</artifactId>
80+
<version>${springboot3.version}</version>
7681
<scope>test</scope>
7782
</dependency>
7883

7984
<dependency>
8085
<groupId>org.springframework.boot</groupId>
8186
<artifactId>spring-boot-starter-test</artifactId>
87+
<version>${springboot3.version}</version>
8288
<scope>test</scope>
8389
</dependency>
8490

8591
<dependency>
8692
<groupId>org.springframework.boot</groupId>
8793
<artifactId>spring-boot-starter-data-jpa</artifactId>
94+
<version>${springboot3.version}</version>
8895
<scope>test</scope>
8996
</dependency>
9097

9198
<dependency>
9299
<groupId>com.h2database</groupId>
93100
<artifactId>h2</artifactId>
101+
<version>2.3.232</version>
94102
<scope>test</scope>
95103
</dependency>
96104
</dependencies>
@@ -119,8 +127,8 @@
119127
<plugin>
120128
<artifactId>maven-compiler-plugin</artifactId>
121129
<configuration>
122-
<source>9</source>
123-
<target>9</target>
130+
<source>17</source>
131+
<target>17</target>
124132
<annotationProcessorPaths>
125133
<path>
126134
<groupId>org.springframework.boot</groupId>

druid-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.alibaba</groupId>
77
<artifactId>druid-parent</artifactId>
8-
<version>1.2.27-SNAPSHOT</version>
8+
<version>1.2.27</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>druid-spring-boot-starter</artifactId>

druid-wrapper/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.alibaba</groupId>
66
<artifactId>druid-parent</artifactId>
7-
<version>1.2.27-SNAPSHOT</version>
7+
<version>1.2.27</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<groupId>com.alibaba</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.alibaba</groupId>
88
<artifactId>druid-parent</artifactId>
9-
<version>1.2.27-SNAPSHOT</version>
9+
<version>1.2.27</version>
1010
<name>${project.artifactId}</name>
1111
<description>A JDBC datasource implementation.</description>
1212
<packaging>pom</packaging>
@@ -206,7 +206,7 @@
206206
</plugin>
207207
<plugin>
208208
<artifactId>maven-javadoc-plugin</artifactId>
209-
<version>3.4.1</version>
209+
<version>3.8.0</version>
210210
</plugin>
211211
<plugin>
212212
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)