Skip to content

Commit

Permalink
Merge 68859c3 into ed616dc
Browse files Browse the repository at this point in the history
  • Loading branch information
allanmckenzie committed Jun 14, 2019
2 parents ed616dc + 68859c3 commit c009642
Show file tree
Hide file tree
Showing 24 changed files with 20 additions and 35 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
[Semantic Versioning](http://semver.org/).

## [Unreleased]

## Changed
- Renamed subscription-repository to event-tracking

## [2.0.0-M37] - 2019-06-14
## Changed
- Implement usage of new system database
Expand Down
19 changes: 0 additions & 19 deletions event-source-subscriptions/subscription-repository/pom.xml

This file was deleted.

2 changes: 1 addition & 1 deletion event-sourcing/subscription-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
</dependency>
<dependency>
<groupId>uk.gov.justice.event-store</groupId>
<artifactId>subscription-event-tracking</artifactId>
<artifactId>event-tracking-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>subscription-repository</artifactId>
<artifactId>event-tracking</artifactId>
<groupId>uk.gov.justice.event-store</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>subscription-repository-liquibase</artifactId>
<artifactId>event-tracking-liquibase</artifactId>

<properties>
<sonar.skip>true</sonar.skip>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
changeLogFile=liquibase/subscription-repository-changelog.xml
changeLogFile=liquibase/event-tracking-changelog.xml
## Commented the following line until we can figure out a way to tell table specific schema name
## to JPA through a property rather than hard coding into the entity class.
##defaultSchemaName=eventstore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.3.xsd">

<includeAll relativeToChangelogFile="true" path="subscription-repository-changesets"/>
<includeAll relativeToChangelogFile="true" path="event-tracking-changesets"/>

</databaseChangeLog>
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>event-store</artifactId>
<artifactId>event-tracking</artifactId>
<groupId>uk.gov.justice.event-store</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>subscription-event-tracking</artifactId>
<artifactId>event-tracking-service</artifactId>

<dependencies>

Expand Down Expand Up @@ -58,7 +58,7 @@
<artifactId>liquibase-maven-plugin</artifactId>
<version>${liquibase.version}</version>
<configuration>
<changeLogFile>liquibase/subscription-repository-changelog.xml</changeLogFile>
<changeLogFile>liquibase/event-tracking-changelog.xml</changeLogFile>
<driver>org.postgresql.Driver</driver>
<url>jdbc:postgresql://localhost:5432/frameworkviewstore</url>
<username>framework</username>
Expand All @@ -76,7 +76,7 @@
<dependencies>
<dependency>
<groupId>uk.gov.justice.event-store</groupId>
<artifactId>subscription-repository-liquibase</artifactId>
<artifactId>event-tracking-liquibase</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
5 changes: 3 additions & 2 deletions event-source-subscriptions/pom.xml → event-tracking/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>event-source-subscriptions</artifactId>
<artifactId>event-tracking</artifactId>
<packaging>pom</packaging>
<modules>
<module>subscription-repository</module>
<module>event-tracking-service</module>
<module>event-tracking-liquibase</module>
</modules>

</project>
6 changes: 3 additions & 3 deletions interceptors/subscription-event-interceptors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</dependency>
<dependency>
<groupId>uk.gov.justice.event-store</groupId>
<artifactId>subscription-event-tracking</artifactId>
<artifactId>event-tracking-service</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down Expand Up @@ -83,7 +83,7 @@
<artifactId>liquibase-maven-plugin</artifactId>
<version>${liquibase.version}</version>
<configuration>
<changeLogFile>liquibase/subscription-repository-changelog.xml</changeLogFile>
<changeLogFile>liquibase/event-tracking-changelog.xml</changeLogFile>
<driver>org.postgresql.Driver</driver>
<url>jdbc:postgresql://localhost:5432/frameworkviewstore</url>
<username>framework</username>
Expand All @@ -101,7 +101,7 @@
<dependencies>
<dependency>
<groupId>uk.gov.justice.event-store</groupId>
<artifactId>subscription-repository-liquibase</artifactId>
<artifactId>event-tracking-liquibase</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
<module>interceptors</module>
<module>event-store-bom</module>
<module>test-utils-event-store</module>
<module>event-source-subscriptions</module>
<module>subscription-event-tracking</module>
<module>event-tracking</module>
<module>event-store-management</module>
</modules>

Expand Down

0 comments on commit c009642

Please sign in to comment.