|
4 | 4 |
|
5 | 5 | <groupId>fr.yodamad.svn2git</groupId>
|
6 | 6 | <artifactId>svn-2-git</artifactId>
|
7 |
| - <version>1.17.1</version> |
8 |
| - <packaging>war</packaging> |
| 7 | + <version>1.18</version> |
| 8 | + <packaging>jar</packaging> |
9 | 9 | <name>Svn 2 GitLab</name>
|
10 | 10 |
|
11 | 11 | <repositories>
|
| 12 | + <repository> |
| 13 | + <id>jcenter</id> |
| 14 | + <url>https://jcenter.bintray.com/</url> |
| 15 | + </repository> |
12 | 16 | <!-- jhipster-needle-maven-repository -->
|
13 | 17 | </repositories>
|
14 | 18 |
|
|
19 | 23 | <maven.version>3.0.0</maven.version>
|
20 | 24 | <java.version>1.8</java.version>
|
21 | 25 | <scala.version>2.12.6</scala.version>
|
22 |
| - <node.version>v8.12.0</node.version> |
| 26 | + <node.version>v8.16.2</node.version> |
23 | 27 | <yarn.version>v1.10.1</yarn.version>
|
24 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
25 | 29 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
61 | 65 | <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
|
62 | 66 | <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
|
63 | 67 | <maven-war-plugin.version>3.2.2</maven-war-plugin.version>
|
64 |
| - <jib-maven-plugin.version>0.9.11</jib-maven-plugin.version> |
65 |
| - <frontend-maven-plugin.version>1.6</frontend-maven-plugin.version> |
| 68 | + <jib-maven-plugin.version>1.8.0</jib-maven-plugin.version> |
| 69 | + <frontend-maven-plugin.version>1.8.0</frontend-maven-plugin.version> |
66 | 70 | <jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
|
67 | 71 | <scala-maven-plugin.version>3.4.2</scala-maven-plugin.version>
|
68 | 72 | <sonar-maven-plugin.version>3.5.0.1254</sonar-maven-plugin.version>
|
|
205 | 209 | <artifactId>assertj-core</artifactId>
|
206 | 210 | <scope>test</scope>
|
207 | 211 | </dependency>
|
208 |
| - <dependency> |
| 212 | + <!-- <dependency> |
209 | 213 | <groupId>org.hibernate</groupId>
|
210 | 214 | <artifactId>hibernate-jpamodelgen</artifactId>
|
211 | 215 | <version>${hibernate.version}</version>
|
212 | 216 | <scope>provided</scope>
|
213 |
| - </dependency> |
| 217 | + </dependency> --> |
214 | 218 | <dependency>
|
215 | 219 | <groupId>org.hibernate</groupId>
|
216 | 220 | <artifactId>hibernate-envers</artifactId>
|
|
331 | 335 | </dependency>
|
332 | 336 | <dependency>
|
333 | 337 | <groupId>com.madgag</groupId>
|
334 |
| - <artifactId>bfg</artifactId> |
335 |
| - <version>custom</version> |
336 |
| - <systemPath>${project.basedir}/external/bfg-custom.jar</systemPath> |
337 |
| - <scope>system</scope> |
| 338 | + <artifactId>bfg</artifactId> |
| 339 | + <version>1.13.0</version> |
338 | 340 | <exclusions>
|
| 341 | + <exclusion> |
| 342 | + <groupId>org.slf4j</groupId> |
| 343 | + <artifactId>slf4j-simple</artifactId> |
| 344 | + </exclusion> |
339 | 345 | <exclusion>
|
340 | 346 | <groupId>org.scala-lang</groupId>
|
341 | 347 | <artifactId>scala-library</artifactId>
|
|
359 | 365 | <artifactId>markdowngenerator</artifactId>
|
360 | 366 | <version>1.3.1.1</version>
|
361 | 367 | </dependency>
|
| 368 | + <!-- Artifactory --> |
| 369 | + <dependency> |
| 370 | + <groupId>org.jfrog.artifactory.client</groupId> |
| 371 | + <artifactId>artifactory-java-client-services</artifactId> |
| 372 | + <version>2.8.4</version> |
| 373 | + <exclusions> |
| 374 | + <exclusion> |
| 375 | + <groupId>org.apache.httpcomponents</groupId> |
| 376 | + <artifactId>httpclient</artifactId> |
| 377 | + </exclusion> |
| 378 | + <exclusion> |
| 379 | + <groupId>org.apache.httpcomponents</groupId> |
| 380 | + <artifactId>httpcore</artifactId> |
| 381 | + </exclusion> |
| 382 | + </exclusions> |
| 383 | + </dependency> |
| 384 | + <!-- API, java.xml.bind module --> |
| 385 | + <dependency> |
| 386 | + <groupId>javax.xml.bind</groupId> |
| 387 | + <artifactId>jaxb-api</artifactId> |
| 388 | + <version>2.3.1</version> |
| 389 | + </dependency> |
| 390 | + <dependency> |
| 391 | + <groupId>com.sun.xml.bind</groupId> |
| 392 | + <artifactId>jaxb-impl</artifactId> |
| 393 | + <version>2.3.1</version> |
| 394 | + </dependency> |
| 395 | + <dependency> |
| 396 | + <groupId>org.javassist</groupId> |
| 397 | + <artifactId>javassist</artifactId> |
| 398 | + <version>3.23.1-GA</version> |
| 399 | + </dependency> |
| 400 | + |
| 401 | + <!-- Jolokia for Glowroot --> |
| 402 | + <dependency> |
| 403 | + <groupId>org.jolokia</groupId> |
| 404 | + <artifactId>jolokia-core</artifactId> |
| 405 | + </dependency> |
| 406 | + |
362 | 407 | <!-- jhipster-needle-maven-add-dependency -->
|
363 | 408 | </dependencies>
|
364 | 409 |
|
|
380 | 425 | <path>
|
381 | 426 | <groupId>org.hibernate</groupId>
|
382 | 427 | <artifactId>hibernate-jpamodelgen</artifactId>
|
383 |
| - <version>${hibernate.version}</version> |
| 428 | + <version>5.4.12.Final</version> |
384 | 429 | </path>
|
385 |
| - |
386 | 430 | </annotationProcessorPaths>
|
387 | 431 | </configuration>
|
388 | 432 | </plugin>
|
|
413 | 457 | <message>You are running an older version of Maven. JHipster requires at least Maven ${maven.version}</message>
|
414 | 458 | <version>[${maven.version},)</version>
|
415 | 459 | </requireMavenVersion>
|
416 |
| - <requireJavaVersion> |
417 |
| - <!-- Until JHipster supports JDK 9 --> |
418 |
| - <message>You are running an incompatible version of Java. JHipster requires JDK ${java.version}</message> |
419 |
| - <version>[1.8,1.9)</version> |
420 |
| - </requireJavaVersion> |
421 | 460 | </rules>
|
422 | 461 | </configuration>
|
423 | 462 | </plugin>
|
|
568 | 607 | </execution>
|
569 | 608 | </executions>
|
570 | 609 | <configuration>
|
| 610 | + <!--suppress UnresolvedMavenProperty --> |
571 | 611 | <mainClass>${start-class}</mainClass>
|
572 | 612 | <executable>true</executable>
|
573 | 613 | <fork>true</fork>
|
574 |
| - <includeSystemScope>true</includeSystemScope> |
575 | 614 | <!--
|
576 | 615 | Enable the line below to have remote debugging of your application on port 5005
|
577 | 616 | <jvmArguments>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</jvmArguments>
|
|
602 | 641 | <SPRING_OUTPUT_ANSI_ENABLED>ALWAYS</SPRING_OUTPUT_ANSI_ENABLED>
|
603 | 642 | <JHIPSTER_SLEEP>0</JHIPSTER_SLEEP>
|
604 | 643 | </environment>
|
605 |
| - <useCurrentTimestamp>true</useCurrentTimestamp> |
| 644 | + <creationTime>USE_CURRENT_TIMESTAMP</creationTime> |
606 | 645 | </container>
|
607 | 646 | </configuration>
|
608 | 647 | </plugin>
|
609 | 648 | <!-- jhipster-needle-maven-add-plugin -->
|
| 649 | + <plugin> |
| 650 | + <groupId>org.apache.maven.plugins</groupId> |
| 651 | + <artifactId>maven-antrun-plugin</artifactId> |
| 652 | + <version>1.8</version> |
| 653 | + <executions> |
| 654 | + <execution> |
| 655 | + <phase>validate</phase> |
| 656 | + <goals> |
| 657 | + <goal>run</goal> |
| 658 | + </goals> |
| 659 | + <configuration> |
| 660 | + <target> |
| 661 | + <echo>Displaying value of 'basedir' property</echo> |
| 662 | + <echo>[basedir]: ${basedir}</echo> |
| 663 | + </target> |
| 664 | + </configuration> |
| 665 | + </execution> |
| 666 | + </executions> |
| 667 | + </plugin> |
610 | 668 | </plugins>
|
611 | 669 | <pluginManagement>
|
612 | 670 | <plugins>
|
|
718 | 776 | <yarnVersion>${yarn.version}</yarnVersion>
|
719 | 777 | </configuration>
|
720 | 778 | </execution>
|
| 779 | + <execution> |
| 780 | + <id>yarn version</id> |
| 781 | + <goals> |
| 782 | + <goal>yarn</goal> |
| 783 | + </goals> |
| 784 | + <configuration> |
| 785 | + <arguments>-v</arguments> |
| 786 | + </configuration> |
| 787 | + </execution> |
721 | 788 | <execution>
|
722 | 789 | <id>yarn install</id>
|
723 | 790 | <goals>
|
|
750 | 817 | <includes>
|
751 | 818 | <include>WEB-INF/**</include>
|
752 | 819 | </includes>
|
| 820 | + <excludes> |
| 821 | + <exclude>WEB-INF/lib/logback-classic-1.2.3.jar</exclude> |
| 822 | + </excludes> |
753 | 823 | </resource>
|
754 | 824 | </webResources>
|
755 | 825 | </configuration>
|
|
796 | 866 | <includes>
|
797 | 867 | <include>WEB-INF/**</include>
|
798 | 868 | </includes>
|
| 869 | + <excludes> |
| 870 | + <exclude>WEB-INF/lib/logback-classic-1.2.3.jar</exclude> |
| 871 | + <exclude>WEB-INF/lib/httpclient-4.5.6.jar</exclude> |
| 872 | + </excludes> |
799 | 873 | </resource>
|
800 | 874 | </webResources>
|
801 | 875 | </configuration>
|
|
845 | 919 | <includes>
|
846 | 920 | <include>WEB-INF/**</include>
|
847 | 921 | </includes>
|
| 922 | + <excludes> |
| 923 | + <exclude>WEB-INF/lib/logback-classic-1.2.3.jar</exclude> |
| 924 | + <exclude>WEB-INF/lib/httpclient-4.5.6.jar</exclude> |
| 925 | + </excludes> |
848 | 926 | </resource>
|
849 | 927 | </webResources>
|
850 | 928 | </configuration>
|
|
854 | 932 | <artifactId>spring-boot-maven-plugin</artifactId>
|
855 | 933 | <version>${spring-boot.version}</version>
|
856 | 934 | <configuration>
|
| 935 | + <!--suppress UnresolvedMavenProperty --> |
857 | 936 | <mainClass>${start-class}</mainClass>
|
858 | 937 | <executable>true</executable>
|
859 | 938 | </configuration>
|
|
979 | 1058 | <artifactId>spring-boot-maven-plugin</artifactId>
|
980 | 1059 | <version>${spring-boot.version}</version>
|
981 | 1060 | <configuration>
|
| 1061 | + <!--suppress UnresolvedMavenProperty --> |
982 | 1062 | <mainClass>${start-class}</mainClass>
|
983 | 1063 | <executable>true</executable>
|
984 | 1064 | <fork>true</fork>
|
|
0 commit comments