Skip to content

Commit 627a292

Browse files
committed
updated dependency-versions
1 parent ca2ed8d commit 627a292

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spring-enricher
1111
<dependency>
1212
<groupId>com.avides.spring</groupId>
1313
<artifactId>spring-enricher</artifactId>
14-
<version>1.0.1.RELEASE</version>
14+
<version>1.0.2.RELEASE</version>
1515
</dependency>
1616
```
1717
#### Example

pom.xml

+16-10
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,20 @@
55
<name>spring-enricher</name>
66
<description>Enables simple enriching of objects in spring-projects</description>
77
<url>https://github.com/avides/spring-enricher</url>
8-
<version>1.0.1.RELEASE</version>
8+
<version>1.0.2.RELEASE</version>
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<java.version>1.8</java.version>
13+
<spring.context.version>5.0.1.RELEASE</spring.context.version>
14+
<slf4j.version>1.7.25</slf4j.version>
15+
<aspectj.version>1.8.13</aspectj.version>
1316
<cobertura.version>2.7</cobertura.version>
1417
<coveralls.version>4.1.0</coveralls.version>
1518
<assertj.version>3.8.0</assertj.version>
19+
<junit.version>4.12</junit.version>
20+
<easymock.version>3.5.1</easymock.version>
21+
<powermock.version>1.7.3</powermock.version>
1622
</properties>
1723

1824
<developers>
@@ -54,7 +60,7 @@
5460
<dependency>
5561
<groupId>org.springframework</groupId>
5662
<artifactId>spring-context</artifactId>
57-
<version>4.2.5.RELEASE</version>
63+
<version>${spring.context.version}</version>
5864
<exclusions>
5965
<exclusion>
6066
<artifactId>spring-expression</artifactId>
@@ -65,46 +71,46 @@
6571
<dependency>
6672
<groupId>org.slf4j</groupId>
6773
<artifactId>slf4j-api</artifactId>
68-
<version>1.7.18</version>
74+
<version>${slf4j.version}</version>
6975
</dependency>
7076
<dependency>
7177
<groupId>org.aspectj</groupId>
7278
<artifactId>aspectjrt</artifactId>
73-
<version>1.8.8</version>
79+
<version>${aspectj.version}</version>
7480
</dependency>
7581
<dependency>
7682
<groupId>org.aspectj</groupId>
7783
<artifactId>aspectjweaver</artifactId>
78-
<version>1.8.8</version>
84+
<version>${aspectj.version}</version>
7985
</dependency>
8086
<dependency>
8187
<groupId>org.slf4j</groupId>
8288
<artifactId>slf4j-simple</artifactId>
83-
<version>1.7.18</version>
89+
<version>${slf4j.version}</version>
8490
<scope>test</scope>
8591
</dependency>
8692
<dependency>
8793
<groupId>junit</groupId>
8894
<artifactId>junit</artifactId>
89-
<version>4.12</version>
95+
<version>${junit.version}</version>
9096
<scope>test</scope>
9197
</dependency>
9298
<dependency>
9399
<groupId>org.easymock</groupId>
94100
<artifactId>easymock</artifactId>
95-
<version>3.4</version>
101+
<version>${easymock.version}</version>
96102
<scope>test</scope>
97103
</dependency>
98104
<dependency>
99105
<groupId>org.powermock</groupId>
100106
<artifactId>powermock-module-junit4</artifactId>
101-
<version>1.7.0</version>
107+
<version>${powermock.version}</version>
102108
<scope>test</scope>
103109
</dependency>
104110
<dependency>
105111
<groupId>org.powermock</groupId>
106112
<artifactId>powermock-api-easymock</artifactId>
107-
<version>1.7.0</version>
113+
<version>${powermock.version}</version>
108114
<scope>test</scope>
109115
</dependency>
110116
<dependency>

0 commit comments

Comments
 (0)