From 40f8162c24f1333215f73b46932da728d8980862 Mon Sep 17 00:00:00 2001 From: Erin Schnabel Date: Mon, 16 Jan 2017 23:03:21 -0500 Subject: [PATCH] Remove empty app-common Signed-off-by: Erin Schnabel --- app-common/.gitignore | 3 --- app-common/build.gradle | 14 -------------- app-common/pom.xml | 19 ------------------- room-app/build.gradle | 1 - settings.gradle | 1 - 5 files changed, 38 deletions(-) delete mode 100644 app-common/.gitignore delete mode 100644 app-common/build.gradle delete mode 100644 app-common/pom.xml diff --git a/app-common/.gitignore b/app-common/.gitignore deleted file mode 100644 index 981692e..0000000 --- a/app-common/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/target -/bin/ -/build/ diff --git a/app-common/build.gradle b/app-common/build.gradle deleted file mode 100644 index ef4b286..0000000 --- a/app-common/build.gradle +++ /dev/null @@ -1,14 +0,0 @@ -apply plugin: 'java' -apply plugin: 'eclipse-wtp' -sourceCompatibility = 1.8 - -// Add additional code conventions -eclipse.jdt.file { - withProperties { - it['org.eclipse.jdt.core.formatter.indentation.size'] = '4' - it['org.eclipse.jdt.core.formatter.tabulation.size'] = '4' - it['org.eclipse.jdt.core.formatter.tabulation.char'] = 'space' - it['org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases'] = 'true' - it['org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch'] = 'true' - } -} \ No newline at end of file diff --git a/app-common/pom.xml b/app-common/pom.xml deleted file mode 100644 index 3c1a064..0000000 --- a/app-common/pom.xml +++ /dev/null @@ -1,19 +0,0 @@ - - 4.0.0 - - gameon-room - app-common - 0.0.1-SNAPSHOT - jar - GameOn room common - - - - The Apache Software License, Version 2.0 - https://github.com/gameontext/gameon-room/blob/master/LICENSE - repo - - - - diff --git a/room-app/build.gradle b/room-app/build.gradle index 8942663..5388d74 100644 --- a/room-app/build.gradle +++ b/room-app/build.gradle @@ -13,7 +13,6 @@ dependencies { providedCompile 'javax.enterprise:cdi-api:1.2' providedCompile 'javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0' compile 'org.mongodb:mongo-java-driver:2.12.3' - compile project(':app-common') compile 'com.github.gameontext:signed:v1.0.3' diff --git a/settings.gradle b/settings.gradle index 4eb9378..5888fcc 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,5 +1,4 @@ rootProject.name = 'gameon-room' -include 'app-common' include 'room-app' include 'room-wlpcfg'