|
11 | 11 | <parent> |
12 | 12 | <groupId>org.springframework.boot</groupId> |
13 | 13 | <artifactId>spring-boot-starter-parent</artifactId> |
14 | | - <version>1.2.2.RELEASE</version> |
| 14 | + <version>1.2.4.RELEASE</version> |
15 | 15 | </parent> |
16 | 16 |
|
17 | 17 | <dependencies> |
|
26 | 26 | <artifactId>spring-boot-starter-thymeleaf</artifactId> |
27 | 27 | </dependency> |
28 | 28 | <dependency> |
29 | | - <groupId>org.springframework.boot</groupId> |
30 | | - <artifactId>spring-boot-starter-actuator</artifactId> |
| 29 | + <groupId>org.springframework.boot</groupId> |
| 30 | + <artifactId>spring-boot-starter-actuator</artifactId> |
31 | 31 | </dependency> |
32 | | - |
| 32 | + |
33 | 33 | <!-- LDAP Dependencies --> |
34 | 34 | <dependency> |
35 | 35 | <groupId>org.springframework.security</groupId> |
36 | 36 | <artifactId>spring-security-ldap</artifactId> |
37 | | - <version>3.2.4.RELEASE</version> |
38 | 37 | </dependency> |
39 | 38 |
|
40 | 39 | <dependency> |
41 | 40 | <groupId>org.springframework.ldap</groupId> |
42 | 41 | <artifactId>spring-ldap-core</artifactId> |
43 | | - <version>2.0.2.RELEASE</version> |
| 42 | + <version>2.0.3.RELEASE</version> |
44 | 43 | </dependency> |
45 | 44 | <dependency> |
46 | 45 | <groupId>org.springframework.ldap</groupId> |
47 | 46 | <artifactId>spring-ldap-core-tiger</artifactId> |
48 | | - <version>2.0.2.RELEASE</version> |
| 47 | + <version>2.0.3.RELEASE</version> |
49 | 48 | </dependency> |
50 | 49 |
|
51 | 50 | <dependency> |
|
57 | 56 | <dependency> |
58 | 57 | <groupId>org.apache.mina</groupId> |
59 | 58 | <artifactId>mina-core</artifactId> |
60 | | - <version>2.0.7</version> |
| 59 | + <version>2.0.9</version> |
61 | 60 | </dependency> |
62 | 61 |
|
63 | 62 | </dependencies> |
|
70 | 69 | <filtering>true</filtering> |
71 | 70 | </resource> |
72 | 71 | </resources> |
| 72 | + |
| 73 | + <plugins> |
| 74 | + |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-compiler-plugin</artifactId> |
| 78 | + <version>${maven-compiler-plugin.version}</version> |
| 79 | + <configuration> |
| 80 | + <source>1.8</source> |
| 81 | + <target>1.8</target> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + |
| 85 | + </plugins> |
| 86 | + |
73 | 87 | </build> |
74 | 88 |
|
75 | 89 | <properties> |
| 90 | + <!-- Spring --> |
| 91 | + <org.springframework.version>4.1.6.RELEASE</org.springframework.version> |
| 92 | + <org.springframework.security.version>3.2.7.RELEASE</org.springframework.security.version> |
| 93 | + |
| 94 | + <!-- persistence --> |
| 95 | + <hibernate.version>4.3.10.Final</hibernate.version> |
| 96 | + <mysql-connector-java.version>5.1.35</mysql-connector-java.version> |
| 97 | + |
| 98 | + <!-- logging --> |
| 99 | + <org.slf4j.version>1.7.12</org.slf4j.version> |
| 100 | + <logback.version>1.1.3</logback.version> |
| 101 | + |
| 102 | + <!-- various --> |
| 103 | + <hibernate-validator.version>5.1.3.Final</hibernate-validator.version> |
| 104 | + |
| 105 | + <!-- util --> |
| 106 | + <guava.version>18.0</guava.version> |
| 107 | + <commons-lang3.version>3.4</commons-lang3.version> |
| 108 | + |
| 109 | + <!-- testing --> |
| 110 | + <org.hamcrest.version>1.3</org.hamcrest.version> |
| 111 | + <junit.version>4.11</junit.version> |
| 112 | + <mockito.version>1.10.19</mockito.version> |
| 113 | + |
| 114 | + <httpcore.version>4.4.1</httpcore.version> |
| 115 | + <httpclient.version>4.5</httpclient.version> |
| 116 | + |
| 117 | + <rest-assured.version>2.4.1</rest-assured.version> |
| 118 | + |
| 119 | + <!-- Maven plugins --> |
| 120 | + <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> |
| 121 | + <maven-war-plugin.version>2.6</maven-war-plugin.version> |
| 122 | + <maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version> |
| 123 | + <cargo-maven2-plugin.version>1.4.14</cargo-maven2-plugin.version> |
76 | 124 |
|
77 | 125 | </properties> |
78 | 126 |
|
|
0 commit comments