|
15 | 15 | <java.version>21</java.version> |
16 | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 | 17 | <argLine>-Xmx512m -XX:MaxPermSize=256m</argLine> |
18 | | - <version.slf4j>2.0.17</version.slf4j> |
19 | | - <version.logback>1.5.18</version.logback> |
| 18 | + <slf4j.version>2.0.17</slf4j.version> |
| 19 | + <logback.version>1.5.19</logback.version> |
| 20 | + <everit-json-schema.version>1.14.6</everit-json-schema.version> |
| 21 | + <json-schema-validator.version>1.5.9</json-schema-validator.version> |
| 22 | + <json-schema.version>1.8.2</json-schema.version> |
| 23 | + <jsonschemafriend.version>0.12.5</jsonschemafriend.version> |
| 24 | + <json-schema-validator-jvm.version>0.5.1</json-schema-validator-jvm.version> |
| 25 | + <json-sKema.version>0.25.0</json-sKema.version> |
20 | 26 | <jmh.version>1.37</jmh.version> |
| 27 | + <nexus-staging-maven.version>1.7.0</nexus-staging-maven.version> |
| 28 | + <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> |
| 29 | + <maven-shade-plugin.version>3.6.1</maven-shade-plugin.version> |
21 | 30 | <uberjar.name>benchmarks</uberjar.name> |
22 | | - <version.nexus-staging-maven>1.7.0</version.nexus-staging-maven> |
23 | 31 | </properties> |
24 | 32 |
|
25 | 33 | <repositories> |
|
52 | 60 | <dependency> |
53 | 61 | <groupId>com.github.erosb</groupId> |
54 | 62 | <artifactId>everit-json-schema</artifactId> |
55 | | - <version>1.14.4</version> |
| 63 | + <version>${everit-json-schema.version}</version> |
56 | 64 | </dependency> |
57 | 65 | <dependency> |
58 | 66 | <groupId>com.networknt</groupId> |
59 | 67 | <artifactId>json-schema-validator</artifactId> |
60 | | - <version>1.4.2</version> |
| 68 | + <version>${json-schema-validator.version}</version> |
61 | 69 | </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>dev.harrel</groupId> |
| 72 | + <artifactId>json-schema</artifactId> |
| 73 | + <version>${json-schema.version}</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>net.jimblackler.jsonschemafriend</groupId> |
| 77 | + <artifactId>core</artifactId> |
| 78 | + <version>${jsonschemafriend.version}</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>io.github.optimumcode</groupId> |
| 82 | + <artifactId>json-schema-validator-jvm</artifactId> |
| 83 | + <version>${json-schema-validator-jvm.version}</version> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>com.github.erosb</groupId> |
| 87 | + <artifactId>json-sKema</artifactId> |
| 88 | + <version>${json-sKema.version}</version> |
| 89 | + </dependency> |
62 | 90 | <dependency> |
63 | 91 | <groupId>org.slf4j</groupId> |
64 | 92 | <artifactId>slf4j-api</artifactId> |
65 | | - <version>${version.slf4j}</version> |
| 93 | + <version>${slf4j.version}</version> |
66 | 94 | </dependency> |
67 | 95 | <dependency> |
68 | 96 | <groupId>ch.qos.logback</groupId> |
69 | 97 | <artifactId>logback-classic</artifactId> |
70 | | - <version>${version.logback}</version> |
| 98 | + <version>${logback.version}</version> |
71 | 99 | </dependency> |
72 | 100 | </dependencies> |
73 | 101 | <build> |
|
94 | 122 | <plugin> |
95 | 123 | <groupId>org.apache.maven.plugins</groupId> |
96 | 124 | <artifactId>maven-shade-plugin</artifactId> |
| 125 | + <version>${maven-shade-plugin.version}</version> |
97 | 126 | <executions> |
98 | 127 | <execution> |
99 | 128 | <phase>package</phase> |
|
133 | 162 | <plugin> |
134 | 163 | <groupId>org.sonatype.plugins</groupId> |
135 | 164 | <artifactId>nexus-staging-maven-plugin</artifactId> |
136 | | - <version>${version.nexus-staging-maven}</version> |
| 165 | + <version>${nexus-staging-maven.version}</version> |
137 | 166 | <extensions>true</extensions> |
138 | 167 | <configuration> |
139 | 168 | <serverId>ossrh</serverId> |
|
154 | 183 | </execution> |
155 | 184 | </executions> |
156 | 185 | </plugin> |
157 | | - <plugin> |
158 | | - <groupId>org.apache.maven.plugins</groupId> |
159 | | - <artifactId>maven-javadoc-plugin</artifactId> |
160 | | - <version>3.2.0</version> |
161 | | - <executions> |
162 | | - <execution> |
163 | | - <id>attach-javadocs</id> |
164 | | - <goals> |
165 | | - <goal>jar</goal> |
166 | | - </goals> |
167 | | - <configuration> |
168 | | - <source>8</source> |
169 | | - </configuration> |
170 | | - </execution> |
171 | | - </executions> |
172 | | - </plugin> |
173 | 186 | <plugin> |
174 | 187 | <groupId>org.apache.maven.plugins</groupId> |
175 | 188 | <artifactId>maven-compiler-plugin</artifactId> |
176 | | - <version>3.6.1</version> |
| 189 | + <version>${maven-compiler-plugin.version}</version> |
177 | 190 | <configuration> |
178 | 191 | <source>${java.version}</source> |
179 | 192 | <target>${java.version}</target> |
| 193 | + <annotationProcessorPaths> |
| 194 | + <path> |
| 195 | + <groupId>org.openjdk.jmh</groupId> |
| 196 | + <artifactId>jmh-generator-annprocess</artifactId> |
| 197 | + <version>${jmh.version}</version> |
| 198 | + </path> |
| 199 | + </annotationProcessorPaths> |
180 | 200 | </configuration> |
181 | 201 | </plugin> |
182 | 202 | <plugin> |
183 | 203 | <groupId>org.apache.maven.plugins</groupId> |
184 | 204 | <artifactId>maven-surefire-plugin</artifactId> |
185 | | - <version>2.22.2</version> |
| 205 | + <version>3.5.4</version> |
186 | 206 | </plugin> |
187 | 207 | <!-- JACOCO added for code coverage --> |
188 | 208 | <plugin> |
189 | 209 | <groupId>org.jacoco</groupId> |
190 | 210 | <artifactId>jacoco-maven-plugin</artifactId> |
191 | | - <version>0.8.6</version> |
| 211 | + <version>0.8.13</version> |
192 | 212 | <executions> |
193 | 213 | <execution> |
194 | 214 | <id>pre-unit-test</id> |
|
251 | 271 | <plugin> |
252 | 272 | <groupId>org.apache.maven.plugins</groupId> |
253 | 273 | <artifactId>maven-compiler-plugin</artifactId> |
254 | | - <version>3.8.0</version> |
| 274 | + <version>${maven-compiler-plugin.version}</version> |
255 | 275 | <configuration> |
256 | 276 | <release>11</release> |
257 | 277 | </configuration> |
|
0 commit comments