Add gradle project

This commit is contained in:
Werner
2021-11-15 10:48:15 -03:00
parent 3e0108f0d9
commit bd7549ca47
8 changed files with 307 additions and 0 deletions

17
app/build.gradle Normal file
View File

@ -0,0 +1,17 @@
plugins {
id "application"
}
application {
mainClass = "app.azure.JavaAzure"
}
repositories {
mavenCentral()
}
dependencies {
implementation "com.azure:azure-ai-textanalytics:5.1.0"
implementation "com.google.guava:guava:30.0-jre"
testImplementation "junit:junit:4.13.1"
}

View File

@ -0,0 +1,7 @@
package app.azure;
public class JavaAzure {
public static void main(String[] args) {
System.out.println( "Hello World");
}
}