Create different modules to break up the work

This commit is contained in:
2019-02-03 16:23:08 -07:00
parent abd4a8d1a1
commit 4e395aa6b4
4 changed files with 51 additions and 0 deletions
@@ -0,0 +1,16 @@
plugins {
id 'java'
}
group 'edu.msudenver.tsp'
version '1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
@@ -0,0 +1,16 @@
plugins {
id 'java'
}
group 'edu.msudenver.tsp'
version '1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
@@ -1,2 +1,5 @@
rootProject.name = 'pandamonium-theorem-prover' rootProject.name = 'pandamonium-theorem-prover'
include 'services'
include 'persistence'
include 'utilities'
@@ -0,0 +1,16 @@
plugins {
id 'java'
}
group 'edu.msudenver.tsp'
version '1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}