Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EVA-2937 - New DISCARDED event #76

Merged
merged 2 commits into from
Aug 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions accession-commons-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>accession-commons-core</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<artifactId>accession-commons</artifactId>
<groupId>uk.ac.ebi.ampt2d</groupId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ public enum EventType {
// accession is no longer valid
DEPRECATED,

// accessioned object was discarded without deprecating the accession
DISCARDED,

// RS ID was back-propagated from a remapped assembly
RS_BACK_PROPAGATED,

Expand Down
8 changes: 4 additions & 4 deletions accession-commons-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>accession-commons-jpa</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<artifactId>accession-commons</artifactId>
<groupId>uk.ac.ebi.ampt2d</groupId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</parent>

<properties>
Expand All @@ -20,12 +20,12 @@
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-core</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-test</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions accession-commons-mongodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>accession-commons-mongodb</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<artifactId>accession-commons</artifactId>
<groupId>uk.ac.ebi.ampt2d</groupId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</parent>

<properties>
Expand All @@ -20,13 +20,13 @@
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-test</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-core</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
10 changes: 5 additions & 5 deletions accession-commons-monotonic-generator-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>accession-commons-monotonic-generator-jpa</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<artifactId>accession-commons</artifactId>
<groupId>uk.ac.ebi.ampt2d</groupId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</parent>

<properties>
Expand All @@ -20,18 +20,18 @@
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-core</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-jpa</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-test</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions accession-commons-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>accession-commons-test</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<artifactId>accession-commons</artifactId>
<groupId>uk.ac.ebi.ampt2d</groupId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</parent>

<properties>
Expand All @@ -26,7 +26,7 @@
<dependency>
<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons-core</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>uk.ac.ebi.ampt2d</groupId>
<artifactId>accession-commons</artifactId>
<version>0.7.8</version>
<version>0.7.9-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
Expand Down