|
28 | 28 | <maven>2.2.0</maven> |
29 | 29 | </prerequisites> |
30 | 30 |
|
| 31 | + <properties> |
| 32 | + <java.version>1.8</java.version> |
| 33 | + <maven.compiler.source>${java.version}</maven.compiler.source> |
| 34 | + <maven.compiler.target>${java.version}</maven.compiler.target> |
| 35 | + <maven-plugin-version>1.0.0</maven-plugin-version> |
| 36 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | + |
| 38 | + <snakeyaml.version>1.25</snakeyaml.version> |
| 39 | + <slf4j.version>1.7.25</slf4j.version> |
| 40 | + <guava.version>25.1-jre</guava.version> |
| 41 | + <protobuf.version>3.4.0</protobuf.version> |
| 42 | + <junit.version>4.12</junit.version> |
| 43 | + <bucket4j.version>4.8.0</bucket4j.version> |
| 44 | + <bouncycastle.version>1.64</bouncycastle.version> |
| 45 | + <apache.commons.lang3.version>3.7</apache.commons.lang3.version> |
| 46 | + <apache.commons.collections4.version>4.1</apache.commons.collections4.version> |
| 47 | + <apache.commons.compress>1.19</apache.commons.compress> |
| 48 | + <common.codec.version>1.11</common.codec.version> |
| 49 | + <spring.boot.version>2.1.0.RELEASE</spring.boot.version> |
| 50 | + <spring.version>5.1.2.RELEASE</spring.version> |
| 51 | + </properties> |
| 52 | + |
31 | 53 | <licenses> |
32 | 54 | <license> |
33 | 55 | <name>The Apache Software License, Version 2.0</name> |
|
50 | 72 | <dependency> |
51 | 73 | <groupId>org.apache.commons</groupId> |
52 | 74 | <artifactId>commons-lang3</artifactId> |
53 | | - <version>3.7</version> |
| 75 | + <version>${apache.commons.lang3.version}</version> |
54 | 76 | </dependency> |
55 | 77 | <dependency> |
56 | 78 | <groupId>org.apache.commons</groupId> |
57 | 79 | <artifactId>commons-collections4</artifactId> |
58 | | - <version>4.1</version> |
| 80 | + <version>${apache.commons.collections4.version}</version> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.yaml</groupId> |
| 84 | + <artifactId>snakeyaml</artifactId> |
| 85 | + <version>${snakeyaml.version}</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>commons-codec</groupId> |
| 89 | + <artifactId>commons-codec</artifactId> |
| 90 | + <version>${common.codec.version}</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.apache.commons</groupId> |
| 94 | + <artifactId>commons-compress</artifactId> |
| 95 | + <version>${apache.commons.compress}</version> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>com.google.guava</groupId> |
| 99 | + <artifactId>guava</artifactId> |
| 100 | + <version>${guava.version}</version> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>org.slf4j</groupId> |
| 104 | + <artifactId>slf4j-api</artifactId> |
| 105 | + <version>${slf4j.version}</version> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.bouncycastle</groupId> |
| 109 | + <artifactId>bcprov-ext-jdk15on</artifactId> |
| 110 | + <version>${bouncycastle.version}</version> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.bouncycastle</groupId> |
| 114 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 115 | + <version>${bouncycastle.version}</version> |
| 116 | + </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>com.microsoft.azure</groupId> |
| 119 | + <artifactId>adal4j</artifactId> |
| 120 | + <version>1.6.0</version> |
| 121 | + <optional>true</optional> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>com.google.protobuf</groupId> |
| 125 | + <artifactId>protobuf-java</artifactId> |
| 126 | + <version>${protobuf.version}</version> |
| 127 | + </dependency> |
| 128 | + <dependency> |
| 129 | + <groupId>org.bitbucket.b_c</groupId> |
| 130 | + <artifactId>jose4j</artifactId> |
| 131 | + <version>0.7.0</version> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>com.github.vladimir-bukhtoyarov</groupId> |
| 135 | + <artifactId>bucket4j-core</artifactId> |
| 136 | + <version>${bucket4j.version}</version> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>commons-cli</groupId> |
| 140 | + <artifactId>commons-cli</artifactId> |
| 141 | + <version>1.4</version> |
| 142 | + </dependency> |
| 143 | + <dependency> |
| 144 | + <groupId>org.springframework.boot</groupId> |
| 145 | + <artifactId>spring-boot</artifactId> |
| 146 | + <version>${spring.boot.version}</version> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.springframework.boot</groupId> |
| 150 | + <artifactId>spring-boot-autoconfigure</artifactId> |
| 151 | + <version>${spring.boot.version}</version> |
| 152 | + </dependency> |
| 153 | + |
| 154 | + |
| 155 | + <!-- tests --> |
| 156 | + <dependency> |
| 157 | + <groupId>ch.qos.logback</groupId> |
| 158 | + <artifactId>logback-classic</artifactId> |
| 159 | + <version>1.2.3</version> |
| 160 | + <scope>test</scope> |
| 161 | + </dependency> |
| 162 | + <dependency> |
| 163 | + <groupId>junit</groupId> |
| 164 | + <artifactId>junit</artifactId> |
| 165 | + <version>4.12</version> |
| 166 | + <scope>test</scope> |
| 167 | + </dependency> |
| 168 | + <dependency> |
| 169 | + <groupId>org.mockito</groupId> |
| 170 | + <artifactId>mockito-core</artifactId> |
| 171 | + <version>3.0.0</version> |
| 172 | + <scope>test</scope> |
| 173 | + </dependency> |
| 174 | + <dependency> |
| 175 | + <groupId>com.github.stefanbirkner</groupId> |
| 176 | + <artifactId>system-rules</artifactId> |
| 177 | + <version>1.16.1</version> |
| 178 | + <scope>test</scope> |
| 179 | + </dependency> |
| 180 | + <dependency> |
| 181 | + <groupId>com.github.tomakehurst</groupId> |
| 182 | + <artifactId>wiremock</artifactId> |
| 183 | + <version>2.19.0</version> |
| 184 | + <scope>test</scope> |
| 185 | + </dependency> |
| 186 | + <dependency> |
| 187 | + <groupId>org.springframework.boot</groupId> |
| 188 | + <artifactId>spring-boot-test</artifactId> |
| 189 | + <version>${spring.boot.version}</version> |
| 190 | + <scope>test</scope> |
59 | 191 | </dependency> |
| 192 | + <dependency> |
| 193 | + <groupId>org.springframework</groupId> |
| 194 | + <artifactId>spring-test</artifactId> |
| 195 | + <version>${spring.version}</version> |
| 196 | + <scope>test</scope> |
| 197 | + </dependency> |
| 198 | + |
60 | 199 | </dependencies> |
61 | 200 | </dependencyManagement> |
62 | 201 |
|
|
0 commit comments