Updated the build.gradle to delegate down to the subprojects
This commit is contained in:
@@ -13,17 +13,5 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
}
|
||||
|
||||
test {
|
||||
if (System.properties['test.profile'] != 'integrationTest') {
|
||||
exclude '**/*integrationTest*'
|
||||
} else {
|
||||
exclude '**/*edu/*'
|
||||
}
|
||||
}
|
||||
|
||||
testSets {
|
||||
unitTest
|
||||
integrationTest
|
||||
compile fileTree(dir: 'lib', include: '**/*.jar')
|
||||
}
|
||||
|
||||
+1
-3
@@ -1,8 +1,6 @@
|
||||
package edu.msudenver.tsp.persistence;
|
||||
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
//@Configuration
|
||||
public class PersistenceConfig {
|
||||
|
||||
}
|
||||
|
||||
-2
@@ -2,9 +2,7 @@ package edu.msudenver.tsp.persistence.manager;
|
||||
|
||||
import edu.msudenver.tsp.persistence.dao.DefinitionDao;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
class DefinitionManager {
|
||||
final private DefinitionDao definitionDao;
|
||||
|
||||
+2
-5
@@ -1,10 +1,7 @@
|
||||
package edu.msudenver.tsp.persistence.manager;
|
||||
|
||||
import org.springframework.context.annotation.ComponentScan;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
@ComponentScan
|
||||
//@Configuration
|
||||
//@ComponentScan
|
||||
//@PropertySource("classpath:development.properties")
|
||||
public class ManagerConfig {
|
||||
|
||||
|
||||
+1
-2
@@ -2,9 +2,8 @@ package edu.msudenver.tsp.persistence.manager;
|
||||
|
||||
import edu.msudenver.tsp.persistence.dao.NotationDao;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
|
||||
@AllArgsConstructor
|
||||
class NotationManager {
|
||||
final private NotationDao notationDao;
|
||||
|
||||
-2
@@ -1,9 +1,7 @@
|
||||
package edu.msudenver.tsp.persistence.manager;
|
||||
|
||||
import edu.msudenver.tsp.persistence.dao.ProofDao;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
class ProofManager {
|
||||
final private ProofDao proofDao;
|
||||
|
||||
|
||||
-2
@@ -2,9 +2,7 @@ package edu.msudenver.tsp.persistence.manager;
|
||||
|
||||
import edu.msudenver.tsp.persistence.dao.TheoremDao;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
class TheoremManager {
|
||||
final private TheoremDao theoremDao;
|
||||
|
||||
Reference in New Issue
Block a user