|
3 | 3 | <groupId>de.jollyday</groupId> |
4 | 4 | <artifactId>jollyday</artifactId> |
5 | 5 | <name>Jollyday</name> |
6 | | - <version>0.5.11-SNAPSHOT</version> |
| 6 | + <version>0.6.0-SNAPSHOT</version> |
7 | 7 | <description> |
8 | 8 | This API determines the holidays for a given year, country/name and eventually state/region. The holiday data is |
9 | 9 | stored in XML files (one for each country) and will be read from the classpath. You can provide your own holiday |
|
101 | 101 | <plugin> |
102 | 102 | <groupId>com.github.davidmoten</groupId> |
103 | 103 | <artifactId>jax-maven-plugin</artifactId> |
104 | | - <version>0.1.5</version> |
| 104 | + <version>0.2</version> |
105 | 105 | </plugin> |
106 | 106 | <plugin> |
107 | 107 | <groupId>org.apache.maven.plugins</groupId> |
|
206 | 206 | <argument>-d</argument> |
207 | 207 | <argument>${project.build.directory}/generated-sources/jaxb</argument> |
208 | 208 | <argument>-target</argument> |
209 | | - <argument>2.1</argument> |
| 209 | + <argument>3.0</argument> |
210 | 210 | <argument>-p</argument> |
211 | 211 | <argument>de.jollyday.config</argument> |
212 | 212 | <argument>${project.basedir}/src/main/xsd/Holiday.xsd</argument> |
|
337 | 337 | </plugins> |
338 | 338 | </build> |
339 | 339 | </profile> |
340 | | - <profile> |
341 | | - <id>jdk9</id> |
342 | | - <activation> |
343 | | - <jdk>[9,)</jdk> |
344 | | - </activation> |
345 | | - <build> |
346 | | - <plugins> |
347 | | - <plugin> |
348 | | - <groupId>org.apache.maven.plugins</groupId> |
349 | | - <artifactId>maven-surefire-plugin</artifactId> |
350 | | - <configuration> |
351 | | - <argLine>@{argLine} |
352 | | - --add-opens de.jollyday/de.jollyday.config=java.xml.bind |
353 | | - --add-opens de.jollyday/de.jollyday.configuration=ALL-UNNAMED |
354 | | - --add-opens de.jollyday/de.jollyday.datasource.impl=ALL-UNNAMED |
355 | | - --add-opens de.jollyday/de.jollyday.util=ALL-UNNAMED |
356 | | - --add-opens de.jollyday/holidays=ALL-UNNAMED</argLine> |
357 | | - <additionalClasspathElements> |
358 | | - <additionalClasspathElement>${project.basedir}/src/main/resources</additionalClasspathElement> |
359 | | - </additionalClasspathElements> |
360 | | - </configuration> |
361 | | - </plugin> |
362 | | - </plugins> |
363 | | - </build> |
364 | | - </profile> |
365 | 340 | <profile> |
366 | 341 | <id>jdk11</id> |
367 | 342 | <activation> |
|
384 | 359 | <dependency> |
385 | 360 | <groupId>jakarta.xml.bind</groupId> |
386 | 361 | <artifactId>jakarta.xml.bind-api</artifactId> |
387 | | - <version>2.3.3</version> |
| 362 | + <version>4.0.0</version> |
388 | 363 | </dependency> |
389 | 364 | <dependency> |
390 | 365 | <groupId>org.glassfish.jaxb</groupId> |
391 | 366 | <artifactId>jaxb-runtime</artifactId> |
392 | | - <version>2.3.4</version> |
| 367 | + <version>4.0.1</version> |
393 | 368 | </dependency> |
394 | 369 | </dependencies> |
395 | 370 | </profile> |
396 | | - <profile> |
397 | | - <id>jdk1</id> |
398 | | - <activation> |
399 | | - <jdk>(,1.8]</jdk> |
400 | | - </activation> |
401 | | - <build> |
402 | | - <plugins> |
403 | | - <plugin> |
404 | | - <groupId>org.apache.maven.plugins</groupId> |
405 | | - <artifactId>maven-compiler-plugin</artifactId> |
406 | | - <version>3.8.0</version> |
407 | | - <configuration> |
408 | | - <excludes> |
409 | | - <exclude>module-info.java</exclude> |
410 | | - </excludes> |
411 | | - <source>1.8</source> |
412 | | - <target>1.8</target> |
413 | | - </configuration> |
414 | | - </plugin> |
415 | | - </plugins> |
416 | | - </build> |
417 | | - </profile> |
418 | 371 | </profiles> |
419 | 372 | <dependencies> |
420 | 373 | <dependency> |
|
0 commit comments