Skip to content
This repository has been archived by the owner on Oct 5, 2018. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openwide-java/tomcat-classloader-ordered
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ROAMSYS/tomcat-classloader-ordered
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 19, 2019

  1. Version 1.0.0: Use of Tomcat 9 / Java 11

    Norbert Becker committed Jul 19, 2019
    Copy the full SHA
    bc08a65 View commit details
  2. Merge pull request #1 from norbertroamsys/master

    Version 1.0.0: Use of Tomcat 9 / Java 11
    Michael Bartel authored Jul 19, 2019
    Copy the full SHA
    ea9ec65 View commit details
Showing with 5 additions and 9 deletions.
  1. +5 −9 pom.xml
14 changes: 5 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fr.openwide.tomcat</groupId>
<artifactId>tomcat-classloader-ordered</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>

<name>Tomcat - Ordered classloader</name>
<description>Tomcat classloader which orders jars by name before loading them</description>
@@ -11,22 +11,18 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>

<tomcat.version>9.0.16</tomcat.version>

<jdk.version>1.7</jdk.version>

<tomcat.version>8.5.28</tomcat.version>

<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<version>3.8.0</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<release>11</release>
</configuration>
</plugin>
</plugins>