building simple file

This commit is contained in:
efim 2022-10-27 08:12:07 +00:00
parent cffaac6708
commit 063ec492c0
2 changed files with 17 additions and 0 deletions

View File

@ -4,3 +4,13 @@
* This is a general purpose Gradle build.
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/7.5/samples
*/
plugins {
id 'java'
}
jar {
manifest {
attributes 'Main-Class': 'com.study.GradleTutorial'
}
}

View File

@ -0,0 +1,7 @@
package com.study;
public class GradleTutorial {
public static void main(String[] args) {
System.out.println("Grrr");
}
}