Initial commit

master
Lonami Exo 2018-07-23 11:11:49 +02:00
commit 7b75a31624
4 changed files with 21 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
out/
build/
.gradle/

12
build.gradle Normal file
View File

@ -0,0 +1,12 @@
plugins {
id 'java'
}
group 'io.github.lonamiwebs.overgram'
version '0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}

View File

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

0
src/main/resources/stub Normal file
View File