Re-org submodules, add debug compiler options

This commit is contained in:
Jon Brisbin
2012-04-11 15:44:20 -05:00
parent 492519f150
commit e49014542c
46 changed files with 6 additions and 14 deletions

View File

@@ -27,6 +27,7 @@ subprojects {
apply plugin: "java"
apply plugin: "groovy"
[compileJava, compileTestJava]*.options*.debugOptions*.debugLevel = "source,lines,vars"
[compileJava, compileTestJava]*.options*.compilerArgs = ["-Xlint:-serial", "-Xlint:-unchecked"]
sourceCompatibility = 1.6

View File

@@ -1,3 +1,3 @@
include "core",
"repository",
"webmvc"
include "spring-data-rest-core",
"spring-data-rest-repository",
"spring-data-rest-webmvc"

View File

@@ -1,5 +1,3 @@
archivesBaseName = "spring-data-rest-${name}"
dependencies {
// Google Guava

View File

@@ -1,5 +1,3 @@
archivesBaseName = "spring-data-rest-${name}"
dependencies {
// Spring
@@ -15,7 +13,7 @@ dependencies {
compile "org.springframework.data:spring-data-jpa:$sdJpaVersion"
// Exporter core
compile project(":core")
compile project(":spring-data-rest-core")
// Testing
testCompile "org.hibernate:hibernate-entitymanager:$hibernateVersion"

View File

@@ -1,8 +1,3 @@
//apply plugin: "war"
//apply plugin: "jetty"
archivesBaseName = "spring-data-rest-${name}"
dependencies {
// APIS
@@ -16,7 +11,7 @@ dependencies {
runtime "cglib:cglib-nodep:2.2.2"
// Repository Exporter support
compile project(":repository")
compile project(":spring-data-rest-repository")
// Testing
testRuntime "org.hibernate:hibernate-entitymanager:$hibernateVersion"