mirror of
https://github.com/guilhermewerner/java-azure
synced 2025-06-16 03:34:20 +00:00
Add gradle project
This commit is contained in:
17
app/build.gradle
Normal file
17
app/build.gradle
Normal 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"
|
||||
}
|
7
app/src/main/java/app/azure/JavaAzure.java
Normal file
7
app/src/main/java/app/azure/JavaAzure.java
Normal file
@ -0,0 +1,7 @@
|
||||
package app.azure;
|
||||
|
||||
public class JavaAzure {
|
||||
public static void main(String[] args) {
|
||||
System.out.println( "Hello World");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user