Skip to content

Commit

Permalink
upgrade dependencies, require java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
per committed Apr 1, 2022
1 parent 31a3690 commit 51baeef
Showing 1 changed file with 27 additions and 14 deletions.
41 changes: 27 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>spring-boot-starter-parent</artifactId>
<groupId>org.springframework.boot</groupId>
<version>2.6.3</version>
<version>2.6.6</version>
</parent>

<artifactId>munin</artifactId>
Expand Down Expand Up @@ -49,19 +49,19 @@
<jquery.version>3.6.0</jquery.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<junit-platform.version>1.8.2</junit-platform.version>
<liquibase-core.version>4.7.1</liquibase-core.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<liquibase-core.version>4.9.1</liquibase-core.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<mdr.version>1.5.1</mdr.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<renjin.version>3.5-beta76</renjin.version>
<renjin-spring-boot-starter.version>1.0.0</renjin-spring-boot-starter.version>
<spotbugs-annotations.version>4.5.3</spotbugs-annotations.version>
<spotbugs-annotations.version>4.6.0</spotbugs-annotations.version>
<!-- note that parent has the version hard coded so must duplicate the setting there as well -->
<spring.boot.version>2.6.3</spring.boot.version>
<spring.boot.version>2.6.6</spring.boot.version>
<thymeleaf-extras-springsecurity5.version>3.0.4.RELEASE</thymeleaf-extras-springsecurity5.version>
<webjars-locator.version>0.42</webjars-locator.version>
<webjars-locator.version>0.45</webjars-locator.version>
<h2.version>2.1.210</h2.version>
</properties>

Expand Down Expand Up @@ -89,6 +89,11 @@
<artifactId>renjin-aether-package-loader</artifactId>
<version>${renjin.version}</version>
</dependency>
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
<version>${renjin.version}</version>
</dependency>
<dependency>
<groupId>se.alipsa</groupId>
<artifactId>renjin-spring-boot-starter</artifactId>
Expand All @@ -98,6 +103,14 @@
<groupId>org.renjin</groupId>
<artifactId>renjin-aether-package-loader</artifactId>
</exclusion>
<exclusion>
<groupId>org.renjin</groupId>
<artifactId>renjin-script-engine</artifactId>
</exclusion>
<exclusion>
<groupId>org.renjin.cran</groupId>
<artifactId>testthat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -305,7 +318,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.9.0</version>
<version>2.10.0</version>
<configuration>
<rulesUri>file:https://${basedir}/version-plugin-rules.xml</rulesUri>
</configuration>
Expand Down Expand Up @@ -340,7 +353,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.5.3.0</version>
<version>4.6.0.0</version>
<executions>
<execution>
<goals>
Expand All @@ -352,7 +365,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.15.0</version>
<version>3.16.0</version>
<configuration>
<targetJdk>1.8</targetJdk>
<printFailingErrors>true</printFailingErrors>
Expand Down Expand Up @@ -392,12 +405,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.10.0</version>
<version>3.11.0</version>
</plugin>
<!--plugin>
<groupId>org.jacoco</groupId>
Expand Down Expand Up @@ -434,7 +447,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<version>3.3.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -490,7 +503,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<version>1.6.12</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down

0 comments on commit 51baeef

Please sign in to comment.