summaryrefslogtreecommitdiff
path: root/game-engine/build.gradle
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-04-23 21:05:36 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-04-23 21:07:15 +0200
commit8702554846fe3791d4c877fbfe8e868b37fe39af (patch)
tree181a5de598248b914b79685084e73e161b3b26e9 /game-engine/build.gradle
parentUpgrade frontend build tools version (diff)
downloadseven-wonders-8702554846fe3791d4c877fbfe8e868b37fe39af.tar.gz
seven-wonders-8702554846fe3791d4c877fbfe8e868b37fe39af.tar.bz2
seven-wonders-8702554846fe3791d4c877fbfe8e868b37fe39af.zip
Extract game engine as separate artifact
Diffstat (limited to 'game-engine/build.gradle')
-rw-r--r--game-engine/build.gradle24
1 files changed, 24 insertions, 0 deletions
diff --git a/game-engine/build.gradle b/game-engine/build.gradle
new file mode 100644
index 00000000..956e9f3a
--- /dev/null
+++ b/game-engine/build.gradle
@@ -0,0 +1,24 @@
+apply plugin: 'java-library'
+apply plugin: 'checkstyle'
+
+group 'org.luxons'
+
+repositories {
+ mavenCentral()
+}
+
+configurations {
+ checkstyleConfig
+}
+
+dependencies {
+ implementation 'com.google.code.gson:gson:2.8.0'
+ testImplementation 'junit:junit:4.12'
+ checkstyleConfig "org.hildan.checkstyle:checkstyle-config:2.1.0"
+}
+
+checkstyle {
+ maxWarnings = 0
+ toolVersion = '8.2'
+ config = resources.text.fromArchiveEntry(configurations.checkstyleConfig, "checkstyle.xml")
+}
bgstack15