|
5 | 5 | <name>spring-enricher</name>
|
6 | 6 | <description>Enables simple enriching of objects in spring-projects</description>
|
7 | 7 | <url>https://github.com/avides/spring-enricher</url>
|
8 |
| - <version>1.0.1.RELEASE</version> |
| 8 | + <version>1.0.2.RELEASE</version> |
9 | 9 |
|
10 | 10 | <properties>
|
11 | 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
12 | 12 | <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> |
13 | 16 | <cobertura.version>2.7</cobertura.version>
|
14 | 17 | <coveralls.version>4.1.0</coveralls.version>
|
15 | 18 | <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> |
16 | 22 | </properties>
|
17 | 23 |
|
18 | 24 | <developers>
|
|
54 | 60 | <dependency>
|
55 | 61 | <groupId>org.springframework</groupId>
|
56 | 62 | <artifactId>spring-context</artifactId>
|
57 |
| - <version>4.2.5.RELEASE</version> |
| 63 | + <version>${spring.context.version}</version> |
58 | 64 | <exclusions>
|
59 | 65 | <exclusion>
|
60 | 66 | <artifactId>spring-expression</artifactId>
|
|
65 | 71 | <dependency>
|
66 | 72 | <groupId>org.slf4j</groupId>
|
67 | 73 | <artifactId>slf4j-api</artifactId>
|
68 |
| - <version>1.7.18</version> |
| 74 | + <version>${slf4j.version}</version> |
69 | 75 | </dependency>
|
70 | 76 | <dependency>
|
71 | 77 | <groupId>org.aspectj</groupId>
|
72 | 78 | <artifactId>aspectjrt</artifactId>
|
73 |
| - <version>1.8.8</version> |
| 79 | + <version>${aspectj.version}</version> |
74 | 80 | </dependency>
|
75 | 81 | <dependency>
|
76 | 82 | <groupId>org.aspectj</groupId>
|
77 | 83 | <artifactId>aspectjweaver</artifactId>
|
78 |
| - <version>1.8.8</version> |
| 84 | + <version>${aspectj.version}</version> |
79 | 85 | </dependency>
|
80 | 86 | <dependency>
|
81 | 87 | <groupId>org.slf4j</groupId>
|
82 | 88 | <artifactId>slf4j-simple</artifactId>
|
83 |
| - <version>1.7.18</version> |
| 89 | + <version>${slf4j.version}</version> |
84 | 90 | <scope>test</scope>
|
85 | 91 | </dependency>
|
86 | 92 | <dependency>
|
87 | 93 | <groupId>junit</groupId>
|
88 | 94 | <artifactId>junit</artifactId>
|
89 |
| - <version>4.12</version> |
| 95 | + <version>${junit.version}</version> |
90 | 96 | <scope>test</scope>
|
91 | 97 | </dependency>
|
92 | 98 | <dependency>
|
93 | 99 | <groupId>org.easymock</groupId>
|
94 | 100 | <artifactId>easymock</artifactId>
|
95 |
| - <version>3.4</version> |
| 101 | + <version>${easymock.version}</version> |
96 | 102 | <scope>test</scope>
|
97 | 103 | </dependency>
|
98 | 104 | <dependency>
|
99 | 105 | <groupId>org.powermock</groupId>
|
100 | 106 | <artifactId>powermock-module-junit4</artifactId>
|
101 |
| - <version>1.7.0</version> |
| 107 | + <version>${powermock.version}</version> |
102 | 108 | <scope>test</scope>
|
103 | 109 | </dependency>
|
104 | 110 | <dependency>
|
105 | 111 | <groupId>org.powermock</groupId>
|
106 | 112 | <artifactId>powermock-api-easymock</artifactId>
|
107 |
| - <version>1.7.0</version> |
| 113 | + <version>${powermock.version}</version> |
108 | 114 | <scope>test</scope>
|
109 | 115 | </dependency>
|
110 | 116 | <dependency>
|
|
0 commit comments