Skip to content

Commit

Permalink
⬆️ Java 11 update
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotRagueneau committed Aug 16, 2022
1 parent 0c77790 commit c1b5f49
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 30 deletions.
4 changes: 2 additions & 2 deletions feature-shortlabel-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>uk.ac.ebi.intact.tools</groupId>
<artifactId>tools-master</artifactId>
<version>1.0.26-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0</version>
<version>3.12.0</version>
</dependency>

<dependency>
Expand Down
32 changes: 11 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@
<parent>
<groupId>uk.ac.ebi.intact.maven</groupId>
<artifactId>intact-hibernate-master</artifactId>
<version>44</version>
<version>45-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<groupId>uk.ac.ebi.intact.tools</groupId>
<artifactId>tools-master</artifactId>
<packaging>pom</packaging>
<version>1.0.26-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>

<name>IntAct Tools</name>
<description>Tools Master POM</description>

<properties>
<currentVersion>${version}</currentVersion>
<spring.version>3.2.9.RELEASE</spring.version>
<psi.jami.version>3.2.12</psi.jami.version>
<intact.jami.version>1.3.14</intact.jami.version>
<intact.bridges.version>2.1.37</intact.bridges.version>
<intact.core.version>2.6.12</intact.core.version>
<currentVersion>${project.version}</currentVersion>
<spring.version>4.3.30.RELEASE</spring.version>
<psi.jami.version>3.3.0-SNAPSHOT</psi.jami.version>
<intact.jami.version>1.4.0-SNAPSHOT</intact.jami.version>
<intact.bridges.version>2.2.0-SNAPSHOT</intact.bridges.version>
<intact.core.version>2.7.0-SNAPSHOT</intact.core.version>
<maven.pmd.skip>true</maven.pmd.skip>
</properties>

Expand Down Expand Up @@ -67,7 +67,7 @@
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-source</id>
Expand All @@ -77,19 +77,9 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<target>1.8</target>
<source>1.8</source>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<version>2.22.2</version>
<configuration>
<includes>
<include>**/*Test.java</include>
Expand All @@ -104,7 +94,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
12 changes: 6 additions & 6 deletions protein-mapping/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>uk.ac.ebi.intact.tools</groupId>
<artifactId>tools-master</artifactId>
<version>1.0.26-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
</parent>


Expand All @@ -15,7 +15,7 @@
<url>http://www.ebi.ac.uk/~intact/devsite/tools/protein-mapping</url>

<properties>
<spring.version>4.3.12.RELEASE</spring.version>
<spring.version>4.3.30.RELEASE</spring.version>
</properties>

<build>
Expand Down Expand Up @@ -138,12 +138,12 @@
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
Expand Down Expand Up @@ -174,7 +174,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.168</version>
<version>1.4.200</version>
</dependency>

<dependency>
Expand All @@ -187,7 +187,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
<version>31.1-jre</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public void test_SwissprotRemapping_failed_WithEnsemblGeneAndOrganism_LowIdentit
Assert.assertEquals(true, reports.get(2) instanceof DefaultBlastReport);
Assert.assertEquals(false, ((DefaultBlastReport) reports.get(2)).getBlastMatchingProteins().size() > 0);
Assert.assertEquals(StatusLabel.FAILED, reports.get(1).getStatus().getLabel());
Assert.assertEquals(StatusLabel.FAILED, reports.get(2).getStatus().getLabel());
Assert.assertEquals(StatusLabel.TO_BE_REVIEWED, reports.get(2).getStatus().getLabel());

} catch (ActionProcessingException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
Expand Down

0 comments on commit c1b5f49

Please sign in to comment.