aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAmadornes <amadornes@gmail.com>2018-07-02 07:09:26 +0200
committerAmadornes <amadornes@gmail.com>2018-07-02 07:09:26 +0200
commit4ffefc5676def5855d91dffa0d089fe5402364fa (patch)
tree9495841c540167cc8270d95ace49c548fe869af9 /build.gradle
parenteb824ff275544533d38fa184dfb0adef360a62b0 (diff)
downloadArtifactural-4ffefc5676def5855d91dffa0d089fe5402364fa.tar.gz
Artifactural-4ffefc5676def5855d91dffa0d089fe5402364fa.tar.bz2
Artifactural-4ffefc5676def5855d91dffa0d089fe5402364fa.zip
Set up gradle project
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle30
1 files changed, 30 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..43e053e
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,30 @@
+apply plugin: 'java'
+apply plugin: 'idea'
+
+group = 'com.amadornes.artifactural'
+version = '1.0.0'
+
+sourceSets {
+ api
+ main
+ gradlecomp
+}
+
+repositories {
+ jcenter()
+ mavenCentral()
+}
+
+dependencies {
+ implementation sourceSets.api.output
+
+ gradlecompImplementation sourceSets.api.output
+ gradlecompImplementation sourceSets.main.output
+ gradlecompImplementation gradleApi()
+}
+
+jar {
+ from sourceSets.api.output
+ from sourceSets.main.output
+ from sourceSets.gradlecomp.output
+}