Skip to content

Commit

Permalink
closes #159
Browse files Browse the repository at this point in the history
  • Loading branch information
justinhrobbins committed Nov 25, 2014
1 parent c103c50 commit 3b52c6d
Show file tree
Hide file tree
Showing 72 changed files with 49 additions and 19 deletions.
33 changes: 33 additions & 0 deletions FlashCards_Repository/FlashCards_Repository_Commons/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_Repository</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>FlashCards_Repository_Commons</artifactId>
<packaging>jar</packaging>
<name>FlashCards_Repository_Commons</name>
<description>FlashCards_Repository description</description>
<properties>
<skip.coveralls>false</skip.coveralls>
</properties>
<scm>
<connection>scm:git:git@github.com:justinhrobbins/FlashCards_App.git</connection>
<url>scm:git:git@github.com:justinhrobbins/FlashCards_App.git</url>
<developerConnection>scm:git:git@github.com:justinhrobbins/FlashCards_App.git</developerConnection>
</scm>
<dependencies>
<!-- FlashCards project module dependencies -->
<dependency>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_Domain</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<finalName>FlashCards_Repository_Commons</finalName>
</build>
</project>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_App</artifactId>
<artifactId>FlashCards_Repository</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_App</artifactId>
<artifactId>FlashCards_Repository</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_App</artifactId>
<artifactId>FlashCards_Repository</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
21 changes: 8 additions & 13 deletions FlashCards_Repository/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,21 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>FlashCards_Repository</artifactId>
<packaging>jar</packaging>
<packaging>pom</packaging>
<name>FlashCards_Repository</name>
<description>FlashCards_Repository description</description>
<properties>
<skip.coveralls>false</skip.coveralls>
<skip.coveralls>true</skip.coveralls>
</properties>
<scm>
<connection>scm:git:git@github.com:justinhrobbins/FlashCards_App.git</connection>
<url>scm:git:git@github.com:justinhrobbins/FlashCards_App.git</url>
<developerConnection>scm:git:git@github.com:justinhrobbins/FlashCards_App.git</developerConnection>
</scm>
<dependencies>
<!-- FlashCards project module dependencies -->
<dependency>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_Domain</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<finalName>FlashCards_Repository</finalName>
</build>
<modules>
<module>FlashCards_Repository_Commons</module>
<module>FlashCards_Repository_Jpa_Commons</module>
<module>FlashCards_Repository_Jpa</module>
<module>FlashCards_Repository_SpringData</module>
</modules>
</project>
5 changes: 5 additions & 0 deletions FlashCards_Service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
</scm>
<dependencies>
<!-- FlashCards project module dependencies -->
<dependency>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_Domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.robbins.flashcards</groupId>
<artifactId>FlashCards_DTO</artifactId>
Expand Down
3 changes: 0 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,6 @@
<module>FlashCards_Domain</module>
<module>FlashCards_DTO</module>
<module>FlashCards_Repository</module>
<module>FlashCards_Repository_Jpa_Commons</module>
<module>FlashCards_Repository_Jpa</module>
<module>FlashCards_Repository_SpringData</module>
<module>FlashCards_API</module>
<module>FlashCards_Service</module>
<module>FlashCards_Client</module>
Expand Down

0 comments on commit 3b52c6d

Please sign in to comment.