Skip to content
This repository has been archived by the owner on Aug 13, 2020. It is now read-only.

Commit

Permalink
Merge pull request #310 from CJSCommonPlatform/component-module
Browse files Browse the repository at this point in the history
Add custom component module
  • Loading branch information
matt-rich authored Feb 2, 2017
2 parents 48299d8 + 54bc2b4 commit 4f88feb
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
36 changes: 36 additions & 0 deletions components/custom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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>components</artifactId>
<groupId>uk.gov.justice.services</groupId>
<version>1.4.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>custom</artifactId>

<dependencies>
<dependency>
<groupId>uk.gov.justice.services</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>uk.gov.justice.services</groupId>
<artifactId>rest-adapter-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>uk.gov.justice.services</groupId>
<artifactId>rest-client-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>uk.gov.justice.services</groupId>
<artifactId>metrics</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
1 change: 1 addition & 0 deletions components/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<module>command</module>
<module>event</module>
<module>query</module>
<module>custom</module>
</modules>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependencies>
<dependency>
<groupId>uk.gov.justice.services</groupId>
<artifactId>query-api</artifactId>
<artifactId>custom</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
6 changes: 6 additions & 0 deletions framework-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,12 @@
<artifactId>metrics</artifactId>
<version>${cpp.framework.version}</version>
</dependency>

<dependency>
<groupId>uk.gov.justice.services</groupId>
<artifactId>custom</artifactId>
<version>${cpp.framework.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 4f88feb

Please sign in to comment.