Separate generator from lib modules

master
Lonami Exo 2018-07-23 21:01:05 +02:00
parent b61398d166
commit 9c0402e909
19 changed files with 33 additions and 1 deletions

View File

@ -2,7 +2,6 @@ plugins {
id 'java'
}
group 'io.github.lonamiwebs.overgram'
version '0.1'
sourceCompatibility = 1.8

11
generator/build.gradle Normal file
View File

@ -0,0 +1,11 @@
plugins {
id 'java'
}
version '0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}

View File

@ -0,0 +1 @@
rootProject.name = 'generator'

11
lib/build.gradle Normal file
View File

@ -0,0 +1,11 @@
plugins {
id 'java'
}
version '0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}

2
lib/settings.gradle Normal file
View File

@ -0,0 +1,2 @@
rootProject.name = 'lib'

View File

@ -0,0 +1,6 @@
package io.github.lonamiwebs.overgram;
public class Overgram {
public static void main(final String... args) {
}
}

2
settings.gradle Normal file
View File

@ -0,0 +1,2 @@
rootProject.name = 'Overgram'
include ':generator', ':lib'