|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>io.frictionlessdata</groupId> |
5 | 5 | <artifactId>tableschema-java</artifactId> |
6 | | - <version>0.6.4-SNAPSHOT</version> |
| 6 | + <version>0.6.5-SNAPSHOT</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <issueManagement> |
9 | 9 | <url>https://github.com/frictionlessdata/tableschema-java/issues</url> |
|
16 | 16 | </scm> |
17 | 17 | <properties> |
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
19 | 20 | <java.version>8</java.version> |
20 | 21 | <maven.compiler.source>${java.version}</maven.compiler.source> |
21 | 22 | <maven.compiler.target>${java.version}</maven.compiler.target> |
|
27 | 28 | <jackson.version>2.14.1</jackson.version> |
28 | 29 | <junit.version>5.9.1</junit.version> |
29 | 30 | <locationtech-jts.version>1.19.0</locationtech-jts.version> |
30 | | - <networknt-validator-version>1.0.73</networknt-validator-version> |
| 31 | + <networknt-validator-version>1.0.75</networknt-validator-version> |
31 | 32 | <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> |
32 | 33 | <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
33 | 34 | <maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version> |
|
38 | 39 | <maven-release-plugin.version>3.0.0-M7</maven-release-plugin.version> |
39 | 40 | <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> |
40 | 41 | <coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version> |
| 42 | + <dependency-check-maven.version>7.1.0</dependency-check-maven.version> |
41 | 43 | <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version> |
42 | 44 | </properties> |
43 | 45 | <repositories> |
|
57 | 59 | <artifactId>maven-compiler-plugin</artifactId> |
58 | 60 | <version>${maven-compiler-plugin.version}</version> |
59 | 61 | <configuration> |
60 | | - <encoding>utf-8</encoding> |
| 62 | + <encoding>UTF-8</encoding> |
61 | 63 | <source>${maven.compiler.source}</source> |
62 | 64 | <target>${maven.compiler.target}</target> |
63 | 65 | </configuration> |
64 | 66 | </plugin> |
| 67 | + |
65 | 68 | <plugin> |
66 | 69 | <groupId>org.apache.maven.plugins</groupId> |
67 | 70 | <artifactId>maven-resources-plugin</artifactId> |
|
70 | 73 | <encoding>UTF-8</encoding> |
71 | 74 | </configuration> |
72 | 75 | </plugin> |
| 76 | + |
73 | 77 | <plugin> |
74 | 78 | <groupId>org.apache.maven.plugins</groupId> |
75 | 79 | <artifactId>maven-surefire-plugin</artifactId> |
76 | 80 | <version>${maven-surefire-plugin.version}</version> |
77 | 81 | <configuration /> |
78 | 82 | </plugin> |
| 83 | + |
79 | 84 | <plugin> |
80 | 85 | <groupId>org.apache.maven.plugins</groupId> |
81 | 86 | <artifactId>maven-source-plugin</artifactId> |
|
89 | 94 | </execution> |
90 | 95 | </executions> |
91 | 96 | </plugin> |
| 97 | + |
92 | 98 | <plugin> |
93 | 99 | <groupId>org.apache.maven.plugins</groupId> |
94 | 100 | <artifactId>maven-javadoc-plugin</artifactId> |
|
108 | 114 | </execution> |
109 | 115 | </executions> |
110 | 116 | </plugin> |
111 | | - |
| 117 | +<!-- |
112 | 118 | <plugin> |
113 | 119 | <artifactId>maven-deploy-plugin</artifactId> |
114 | 120 | <version>${maven-deploy-plugin.version}</version> |
|
122 | 128 | </execution> |
123 | 129 | </executions> |
124 | 130 | </plugin> |
125 | | - |
| 131 | +--> |
126 | 132 | <plugin> |
127 | 133 | <groupId>org.apache.maven.plugins</groupId> |
128 | 134 | <artifactId>maven-gpg-plugin</artifactId> |
|
189 | 195 | </execution> |
190 | 196 | </executions> |
191 | 197 | </plugin> |
| 198 | + |
192 | 199 | <plugin> |
193 | 200 | <groupId>org.owasp</groupId> |
194 | 201 | <artifactId>dependency-check-maven</artifactId> |
195 | | - <version>7.1.0</version> |
| 202 | + <version>${dependency-check-maven.version}</version> |
196 | 203 | <executions> |
197 | 204 | <execution> |
198 | 205 | <goals> |
|
201 | 208 | </execution> |
202 | 209 | </executions> |
203 | 210 | </plugin> |
| 211 | + |
204 | 212 | </plugins> |
205 | 213 | </build> |
206 | 214 | <dependencies> |
207 | | - <!-- Unit Testing --> |
208 | | - <dependency> |
209 | | - <groupId>org.junit.jupiter</groupId> |
210 | | - <artifactId>junit-jupiter-engine</artifactId> |
211 | | - <version>${junit.version}</version> |
212 | | - <scope>test</scope> |
213 | | - </dependency> |
214 | | - |
215 | | - <dependency> |
216 | | - <groupId>org.junit.vintage</groupId> |
217 | | - <artifactId>junit-vintage-engine</artifactId> |
218 | | - <version>${junit.version}</version> |
219 | | - <scope>test</scope> |
220 | | - </dependency> |
221 | 215 |
|
222 | 216 | <!-- Dependencies for Bean-based Schema inferal --> |
223 | 217 | <dependency> |
|
226 | 220 | <version>${jackson.version}</version> |
227 | 221 | </dependency> |
228 | 222 |
|
229 | | - <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 --> |
| 223 | + <!-- Jackson support for new Java data/time API. For Date/DateTime/Time ec. Fields --> |
230 | 224 | <dependency> |
231 | 225 | <groupId>com.fasterxml.jackson.datatype</groupId> |
232 | 226 | <artifactId>jackson-datatype-jsr310</artifactId> |
233 | 227 | <version>${jackson.version}</version> |
234 | 228 | </dependency> |
235 | 229 |
|
236 | | - <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> |
237 | 230 | <dependency> |
238 | 231 | <groupId>com.fasterxml.jackson.core</groupId> |
239 | 232 | <artifactId>jackson-databind</artifactId> |
240 | 233 | <version>${jackson.version}</version> |
241 | 234 | </dependency> |
242 | 235 |
|
243 | | - <!-- https://mvnrepository.com/artifact/org.geotools/gt-opengis --> |
| 236 | + <!-- Dependencies for Geopoint/Geojson Fields --> |
244 | 237 | <dependency> |
245 | 238 | <groupId>org.geotools</groupId> |
246 | 239 | <artifactId>gt-opengis</artifactId> |
247 | 240 | <version>${geotools.version}</version> |
248 | 241 | </dependency> |
249 | 242 |
|
250 | | - <!-- https://mvnrepository.com/artifact/org.geotools/gt-geometry--> |
| 243 | + <!-- Dependencies for Geopoint/Geojson Fields --> |
251 | 244 | <dependency> |
252 | 245 | <groupId>org.geotools</groupId> |
253 | 246 | <artifactId>gt-geometry</artifactId> |
254 | 247 | <version>${geotools.version}</version> |
255 | 248 | </dependency> |
256 | | - <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts-core --> |
257 | | - <dependency> |
258 | | - <groupId>org.locationtech.jts</groupId> |
259 | | - <artifactId>jts-core</artifactId> |
260 | | - <version>${locationtech-jts.version}</version> |
261 | | - </dependency> |
262 | | - <!-- End Dependencies for Bean-based Schema inferal --> |
263 | 249 |
|
264 | 250 | <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
265 | 251 | <dependency> |
|
293 | 279 | <artifactId>guava</artifactId> |
294 | 280 | <version>${google-guava.version}</version> |
295 | 281 | </dependency> |
| 282 | + |
| 283 | + <!-- Unit Testing --> |
| 284 | + <dependency> |
| 285 | + <groupId>org.junit.jupiter</groupId> |
| 286 | + <artifactId>junit-jupiter-engine</artifactId> |
| 287 | + <version>${junit.version}</version> |
| 288 | + <scope>test</scope> |
| 289 | + </dependency> |
| 290 | + |
296 | 291 | </dependencies> |
297 | 292 | </project> |
0 commit comments