Skip to content

Commit

Permalink
- Update plugin versions
Browse files Browse the repository at this point in the history
 - Add deployment plugin version
 - Add springboot plugin version
 - Add install plugin version
  • Loading branch information
sylvlecl committed Oct 24, 2018
1 parent 75e3629 commit 71d0aee
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 16 deletions.
5 changes: 4 additions & 1 deletion dymola-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-XDignore.symbol.file</compilerArgument>
<fork>true</fork>
<compilerArgs>
<arg>-XDignore.symbol.file</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
Expand Down
46 changes: 31 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,21 @@

<java.version>1.8</java.version>

<maven.compiler.version>2.5.1</maven.compiler.version>
<maven.findbugs.version>3.0.4</maven.findbugs.version>
<maven.javadoc.version>2.10.4</maven.javadoc.version>
<maven.jacoco.version>0.7.8</maven.jacoco.version>
<maven.assembly.version>3.1.0</maven.assembly.version>
<maven.buildnumber.version>1.4</maven.buildnumber.version>
<maven.surefire.version>2.19.1</maven.surefire.version>
<maven.templating.version>1.0.0</maven.templating.version>
<maven.jar.version>3.0.2</maven.jar.version>
<maven.assembly.version>3.0.0</maven.assembly.version>
<maven.license.version>3.0</maven.license.version>
<maven.checkstyle.version>3.0.0</maven.checkstyle.version>
<maven.compiler.version>3.8.0</maven.compiler.version>
<maven.coveralls.version>4.3.0</maven.coveralls.version>
<maven.checkstyle.version>2.17</maven.checkstyle.version>
<maven.war.version>2.4</maven.war.version>
<maven.deploy.version>2.8.2</maven.deploy.version>
<maven.findbugs.version>3.0.5</maven.findbugs.version>
<maven.install.version>2.5.2</maven.install.version>
<maven.javadoc.version>3.0.1</maven.javadoc.version>
<maven.jacoco.version>0.8.1</maven.jacoco.version>
<maven.jar.version>3.1.0</maven.jar.version>
<maven.license.version>3.0</maven.license.version>
<maven.surefire.version>2.22.0</maven.surefire.version>
<maven.templating.version>1.0.0</maven.templating.version>
<maven.war.version>3.2.2</maven.war.version>

<pepite.libs.weightedtrees.version>1.1-ITESLA</pepite.libs.weightedtrees.version>
<pepite.libs.version>1.0-ITESLA</pepite.libs.version>
Expand Down Expand Up @@ -139,7 +141,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand All @@ -165,12 +166,11 @@
<artifactId>umlgraph</artifactId>
<version>5.6</version>
</docletArtifact>
<additionalparam>-views -all</additionalparam>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalOptions>-views -all</additionalOptions>
<additionalOptions>-Xdoclint:none</additionalOptions>
<useStandardDocletOptions>true</useStandardDocletOptions>
<excludePackageNames>cim1*</excludePackageNames>
<docfilessubdirs>true</docfilessubdirs>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -212,6 +212,16 @@
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${maven.install.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
Expand Down Expand Up @@ -257,7 +267,13 @@
<artifactId>coveralls-maven-plugin</artifactId>
<version>${maven.coveralls.version}</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
</plugin>
</plugins>

</pluginManagement>
</build>

Expand Down

0 comments on commit 71d0aee

Please sign in to comment.