aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 16 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..fb83c0a
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,16 @@
1plugins {
2 id 'java'
3}
4
5group 'org.pacien'
6version '1.0-SNAPSHOT'
7
8sourceCompatibility = 1.8
9
10repositories {
11 mavenCentral()
12}
13
14dependencies {
15 testCompile group: 'junit', name: 'junit', version: '4.12'
16}