Gradle multi module, adding spring-jpa-services module
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 22 Jan 2017 14:43:23 +0000 (15:43 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 22 Jan 2017 14:43:23 +0000 (15:43 +0100)
SpringJava/Gradle/settings.gradle
SpringJava/Gradle/spring-jpa-persistence/gradle.properties [deleted file]
SpringJava/Gradle/spring-jpa-services/build.gradle
SpringJava/Gradle/spring-jpa-services/pom.xml [deleted file]

index 89575c1..767e3fa 100644 (file)
@@ -1 +1 @@
-include 'spring-jpa-persistence'
+include ':spring-jpa-persistence', ':spring-jpa-services'
diff --git a/SpringJava/Gradle/spring-jpa-persistence/gradle.properties b/SpringJava/Gradle/spring-jpa-persistence/gradle.properties
deleted file mode 100644 (file)
index e69de29..0000000
index ab4ecf8..2487b71 100644 (file)
@@ -2,7 +2,7 @@ dependencies {
 
     compile(project(":spring-jpa-persistence"))
     
-    testCompile('org.springframework:spring-test:4.3.0.RELEASE') {
+    testCompile("org.springframework:spring-test:${springVersion}") {
         exclude group: 'commons-logging', module: 'commons-logging'
     }
 
diff --git a/SpringJava/Gradle/spring-jpa-services/pom.xml b/SpringJava/Gradle/spring-jpa-services/pom.xml
deleted file mode 100644 (file)
index 06bbfaa..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<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">
-       <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>de.spring.jpa</groupId>
-        <artifactId>spring-jpa-bom</artifactId>
-        <version>1.0-SNAPSHOT</version>
-    </parent>
-    
-    <artifactId>spring-jpa-services</artifactId>
-    <name>SPRING JPA SERVICES</name>
-       <url>https://gumartinm.name/</url>
-       <description>JPA Spring Framework. Services.</description>
-
-
-       <dependencies>
-               <dependency>
-                               <groupId>de.spring.jpa</groupId>
-                               <artifactId>spring-jpa-persistence</artifactId>
-                               <version>1.0-SNAPSHOT</version>
-               </dependency>
-       
-               <!-- Unitary and integration tests -->
-               <dependency>
-                       <groupId>org.springframework</groupId>
-                       <artifactId>spring-test</artifactId>
-                       <scope>test</scope>
-               </dependency>
-       </dependencies>
-</project>