From c1b5f4976d7697b9a0ff6d349fe7a80611f25ba5 Mon Sep 17 00:00:00 2001 From: EliotRagueneau Date: Tue, 16 Aug 2022 12:31:35 +0100 Subject: [PATCH] :arrow_up: Java 11 update --- feature-shortlabel-generator/pom.xml | 4 +-- pom.xml | 32 +++++++------------ protein-mapping/pom.xml | 12 +++---- .../SwissprotRemappingProcessTest.java | 2 +- 4 files changed, 20 insertions(+), 30 deletions(-) diff --git a/feature-shortlabel-generator/pom.xml b/feature-shortlabel-generator/pom.xml index 93a917a..1977b21 100644 --- a/feature-shortlabel-generator/pom.xml +++ b/feature-shortlabel-generator/pom.xml @@ -4,7 +4,7 @@ uk.ac.ebi.intact.tools tools-master - 1.0.26-SNAPSHOT + 1.1.0-SNAPSHOT 4.0.0 @@ -64,7 +64,7 @@ org.apache.commons commons-lang3 - 3.0 + 3.12.0 diff --git a/pom.xml b/pom.xml index 283ec0f..a3cde50 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ uk.ac.ebi.intact.maven intact-hibernate-master - 44 + 45-SNAPSHOT 4.0.0 @@ -11,18 +11,18 @@ uk.ac.ebi.intact.tools tools-master pom - 1.0.26-SNAPSHOT + 1.1.0-SNAPSHOT IntAct Tools Tools Master POM - ${version} - 3.2.9.RELEASE - 3.2.12 - 1.3.14 - 2.1.37 - 2.6.12 + ${project.version} + 4.3.30.RELEASE + 3.3.0-SNAPSHOT + 1.4.0-SNAPSHOT + 2.2.0-SNAPSHOT + 2.7.0-SNAPSHOT true @@ -67,7 +67,7 @@ maven-source-plugin - 2.1.2 + 3.2.1 attach-source @@ -77,19 +77,9 @@ - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.8 - 1.8 - UTF-8 - - maven-surefire-plugin - 2.12.4 + 2.22.2 **/*Test.java @@ -104,7 +94,7 @@ junit junit - 4.12 + 4.13.2 test diff --git a/protein-mapping/pom.xml b/protein-mapping/pom.xml index eb51ef4..d87d606 100644 --- a/protein-mapping/pom.xml +++ b/protein-mapping/pom.xml @@ -3,7 +3,7 @@ uk.ac.ebi.intact.tools tools-master - 1.0.26-SNAPSHOT + 1.1.0-SNAPSHOT @@ -15,7 +15,7 @@ http://www.ebi.ac.uk/~intact/devsite/tools/protein-mapping - 4.3.12.RELEASE + 4.3.30.RELEASE @@ -138,12 +138,12 @@ commons-logging commons-logging - 1.1.1 + 1.2 commons-collections commons-collections - 3.2.1 + 3.2.2 commons-lang @@ -174,7 +174,7 @@ com.h2database h2 - 1.3.168 + 1.4.200 @@ -187,7 +187,7 @@ com.google.guava guava - 19.0 + 31.1-jre diff --git a/protein-mapping/src/test/java/uk/ac/ebi/intact/protein/mapping/actions/SwissprotRemappingProcessTest.java b/protein-mapping/src/test/java/uk/ac/ebi/intact/protein/mapping/actions/SwissprotRemappingProcessTest.java index fe403d5..f513304 100644 --- a/protein-mapping/src/test/java/uk/ac/ebi/intact/protein/mapping/actions/SwissprotRemappingProcessTest.java +++ b/protein-mapping/src/test/java/uk/ac/ebi/intact/protein/mapping/actions/SwissprotRemappingProcessTest.java @@ -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.