Skip to content

Commit 2cde169

Browse files
authored
Merge pull request #119 from RockyMM/master
Use maven property for Spring version
2 parents c279bd6 + 9cd8a05 commit 2cde169

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pom.xml

+4-3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
<java.version>1.7</java.version>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4949
<compiler.encoding>UTF-8</compiler.encoding>
50+
<spring.version>4.3.11.RELEASE</spring.version>
5051
</properties>
5152

5253
<dependencies>
@@ -108,21 +109,21 @@
108109
<dependency>
109110
<groupId>org.springframework</groupId>
110111
<artifactId>spring-core</artifactId>
111-
<version>4.3.5.RELEASE</version>
112+
<version>${spring.version}</version>
112113
<scope>compile</scope>
113114
<optional>true</optional>
114115
</dependency>
115116
<dependency>
116117
<groupId>org.springframework</groupId>
117118
<artifactId>spring-context</artifactId>
118-
<version>4.3.5.RELEASE</version>
119+
<version>${spring.version}</version>
119120
<scope>compile</scope>
120121
<optional>true</optional>
121122
</dependency>
122123
<dependency>
123124
<groupId>org.springframework</groupId>
124125
<artifactId>spring-beans</artifactId>
125-
<version>4.3.5.RELEASE</version>
126+
<version>${spring.version}</version>
126127
<scope>compile</scope>
127128
<optional>true</optional>
128129
</dependency>

0 commit comments

Comments
 (0)