Skip to content

Commit

Permalink
Add CoffeeNet core domain package
Browse files Browse the repository at this point in the history
  • Loading branch information
punycode committed Feb 17, 2020
1 parent 2f0a048 commit 86b939e
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
6 changes: 6 additions & 0 deletions coffeenet-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- CoffeeNet core dependencies -->
<dependency>
<groupId>rocks.coffeenet</groupId>
<artifactId>coffeenet-platform-domain</artifactId>
</dependency>

<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
7 changes: 7 additions & 0 deletions coffeenet-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@

<dependencyManagement>
<dependencies>
<!-- CoffeeNet core dependencies -->
<dependency>
<groupId>rocks.coffeenet</groupId>
<artifactId>coffeenet-platform-domain</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>

<!-- CoffeeNet Dependencies -->
<dependency>
<groupId>rocks.coffeenet</groupId>
Expand Down
32 changes: 32 additions & 0 deletions coffeenet-platform-domain/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>rocks.coffeenet</groupId>
<artifactId>coffeenet-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
<relativePath>../coffeenet-parent/pom.xml</relativePath>
</parent>

<artifactId>coffeenet-platform-domain</artifactId>
<version>2.0.0-SNAPSHOT</version>

<packaging>jar</packaging>

<name>CoffeeNet Platform Domain</name>
<description>
Domain objects for CoffeeNet applications. Abstractions on what a user or apps in the
CoffeeNet eco system represent.
</description>

<dependencies>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<!-- CoffeeNet core modules -->
<module>coffeenet-dependencies</module>
<module>coffeenet-parent</module>
<module>coffeenet-platform-domain</module>
<!-- CoffeeNet Spring Boot integration modules -->
<module>coffeenet-actuator</module>
<module>coffeenet-autoconfigure</module>
Expand Down

0 comments on commit 86b939e

Please sign in to comment.