You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the following text analytics dependency to your project. This version of the dependency uses version `3.0-preview` of the Text Analytics API.
30
+
Create a Maven project in your preferred IDE or development environment. Then add the following dependency to your project's *pom.xml* file. You can find the implementation syntax [for other build tools](https://mvnrepository.com/artifact/com.azure/azure-ai-textanalytics/1.0.0-beta.3) online.
31
31
32
32
```xml
33
33
<dependencies>
@@ -39,8 +39,6 @@ Add the following text analytics dependency to your project. This version of the
39
39
</dependencies>
40
40
```
41
41
42
-
Create a new java file in the following directory: `\src\main\java`.
43
-
44
42
> [!TIP]
45
43
> Want to view the whole quickstart code file at once? You can find it [on GitHub](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/java/TextAnalytics/TextAnalyticsSamples.java), which contains the code examples in this quickstart.
46
44
@@ -67,7 +65,7 @@ Add the following main method to the class. You will define the methods called h
67
65
68
66
```java
69
67
publicstaticvoid main(String[] args) {
70
-
68
+
//You will create these methods later in the quickstart.
0 commit comments