|
18 | 18 | <maven.compiler.target>11</maven.compiler.target> |
19 | 19 |
|
20 | 20 | <!-- Dependency versions --> |
21 | | - <assertjVersion>3.17.2</assertjVersion> |
22 | | - <immutablesVersion>2.8.8</immutablesVersion> |
23 | | - <jacksonVersion>2.11.3</jacksonVersion> |
| 21 | + <assertj.version>3.17.2</assertj.version> |
| 22 | + <immutables.version>2.8.8</immutables.version> |
| 23 | + <jackson.version>2.11.3</jackson.version> |
24 | 24 | <jmh.version>1.26</jmh.version> |
25 | | - <junitVersion>4.13.1</junitVersion> |
26 | | - <junit5Version>5.7.0</junit5Version> |
27 | | - <errorProneVersion>2.4.0</errorProneVersion> |
| 25 | + <junit4.version>4.13.1</junit4.version> |
| 26 | + <junit5.version>5.7.0</junit5.version> |
| 27 | + <errorprone.version>2.4.0</errorprone.version> |
28 | 28 | </properties> |
29 | 29 |
|
30 | 30 | <modules> |
|
68 | 68 | <dependency> |
69 | 69 | <groupId>com.fasterxml.jackson</groupId> |
70 | 70 | <artifactId>jackson-bom</artifactId> |
71 | | - <version>${jacksonVersion}</version> |
| 71 | + <version>${jackson.version}</version> |
72 | 72 | <scope>import</scope> |
73 | 73 | <type>pom</type> |
74 | 74 | </dependency> |
75 | 75 | <dependency> |
76 | 76 | <groupId>junit</groupId> |
77 | 77 | <artifactId>junit</artifactId> |
78 | | - <version>${junitVersion}</version> |
| 78 | + <version>${junit4.version}</version> |
79 | 79 | </dependency> |
80 | 80 | <dependency> |
81 | 81 | <groupId>org.junit.jupiter</groupId> |
82 | 82 | <artifactId>junit-jupiter-api</artifactId> |
83 | | - <version>${junit5Version}</version> |
| 83 | + <version>${junit5.version}</version> |
84 | 84 | </dependency> |
85 | 85 | <dependency> |
86 | 86 | <groupId>org.junit.jupiter</groupId> |
87 | 87 | <artifactId>junit-jupiter-engine</artifactId> |
88 | | - <version>${junit5Version}</version> |
| 88 | + <version>${junit5.version}</version> |
89 | 89 | </dependency> |
90 | 90 | <dependency> |
91 | 91 | <groupId>org.junit.jupiter</groupId> |
92 | 92 | <artifactId>junit-jupiter-params</artifactId> |
93 | | - <version>${junit5Version}</version> |
| 93 | + <version>${junit5.version}</version> |
94 | 94 | </dependency> |
95 | 95 | <dependency> |
96 | 96 | <groupId>org.junit.vintage</groupId> |
97 | 97 | <artifactId>junit-vintage-engine</artifactId> |
98 | | - <version>${junit5Version}</version> |
| 98 | + <version>${junit5.version}</version> |
99 | 99 | </dependency> |
100 | 100 | <dependency> |
101 | 101 | <groupId>org.assertj</groupId> |
102 | 102 | <artifactId>assertj-core</artifactId> |
103 | | - <version>${assertjVersion}</version> |
| 103 | + <version>${assertj.version}</version> |
104 | 104 | </dependency> |
105 | 105 | <dependency> |
106 | 106 | <groupId>org.immutables</groupId> |
107 | 107 | <artifactId>value</artifactId> |
108 | | - <version>${immutablesVersion}</version> |
| 108 | + <version>${immutables.version}</version> |
109 | 109 | </dependency> |
110 | 110 | </dependencies> |
111 | 111 | </dependencyManagement> |
|
180 | 180 | <path> |
181 | 181 | <groupId>com.google.errorprone</groupId> |
182 | 182 | <artifactId>error_prone_core</artifactId> |
183 | | - <version>${errorProneVersion}</version> |
| 183 | + <version>${errorprone.version}</version> |
184 | 184 | </path> |
185 | 185 | <path> |
186 | 186 | <groupId>org.immutables</groupId> |
187 | 187 | <artifactId>value</artifactId> |
188 | | - <version>${immutablesVersion}</version> |
| 188 | + <version>${immutables.version}</version> |
189 | 189 | </path> |
190 | 190 | <path> |
191 | 191 | <groupId>org.openjdk.jmh</groupId> |
|
0 commit comments