Some basic entities and project structure

This commit is contained in:
2015-03-20 14:18:29 +01:00
commit caf66ea9a5
24 changed files with 1614 additions and 0 deletions

13
networking/build.gradle Normal file
View File

@ -0,0 +1,13 @@
apply plugin: 'java'
sourceCompatibility = 1.7
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
compile ':domain'
testCompile 'junit:junit:4.11'
}