Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions sdk/textanalytics/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# DO NOT EDIT THIS FILE
# This file is generated automatically and any changes will be lost.

resources:
repositories:
- repository: azure-sdk-build-tools
type: git
name: internal/azure-sdk-build-tools
- repository: azure-sdk-tools
type: github
name: Azure/azure-sdk-tools
endpoint: azure

trigger:
branches:
include:
- master
- feature/*
- hotfix/*
- release/*
paths:
include:
- sdk/textanalytics/azure-ai-textanalytics

pr:
branches:
include:
- master
- feature/*
- hotfix/*
- release/*
paths:
include:
- sdk/textanalytics/azure-ai-textanalytics

stages:
- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
ServiceDirectory: textanalytics
Artifacts:
- name: azure-ai-textanalytics
safeName: azureaitextanalytics
stagingProfileId: 88192f04117501
28 changes: 28 additions & 0 deletions sdk/textanalytics/pom.service.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!-- Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.azure</groupId>
<artifactId>azure-cognitiveservices-textanalytics-service</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version> <!-- Need not change for every release-->
<profiles>
<profile>
<id>client</id>
<activation>
<property>
<name>env.SDKTYPE</name>
<value>!data</value>
</property>
</activation>
<modules>
<module>../core/azure-core</module>
<module>../core/azure-core-test</module>
<module>../core/azure-core-http-netty</module>
<module>../identity/azure-identity</module>
<module>azure-cs-textanalytics</module>
</modules>
</profile>
</profiles>
</project>