Skip to content

Add Azure AppConfiguration V2 library #44246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ com.azure:azure-cosmos-test;1.0.0-beta.11;1.0.0-beta.12
com.azure:azure-cosmos-tests;1.0.0-beta.1;1.0.0-beta.1
com.azure.cosmos.kafka:azure-cosmos-kafka-connect;2.2.0;2.3.0-beta.1
com.azure:azure-data-appconfiguration;1.8.0;1.9.0-beta.1
com.azure:azure-data-appconfiguration-v2;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-data-appconfiguration-perf;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-data-schemaregistry;1.5.4;1.6.0-beta.1
com.azure:azure-data-schemaregistry-apacheavro;1.1.25;1.2.0-beta.3
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Release History

## 1.0.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
15 changes: 15 additions & 0 deletions sdk/appconfiguration/azure-data-appconfiguration-v2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Azure AppConfiguration client library for Java

## Getting started

## Key concepts

## Examples

## Troubleshooting

## Next steps

## Next steps Samples

## Contributing
108 changes: 108 additions & 0 deletions sdk/appconfiguration/azure-data-appconfiguration-v2/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
<!--
~ Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.
Code generated by Microsoft (R) TypeSpec Code Generator.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.azure.v2</groupId>
<artifactId>azure-client-sdk-parent</artifactId>
<version>2.0.0-beta.1</version> <!-- {x-version-update;com.azure:azure-client-sdk-parent-v2;current} -->
<relativePath>../../parents/azure-client-sdk-parent-v2</relativePath>
</parent>

<groupId>io.clientcore</groupId>
<artifactId>azure-data-appconfiguration-v2</artifactId>
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:azure-v2-data-appconfiguration;current} -->
<packaging>jar</packaging>

<name>SDK for AzureAppConfiguration</name>
<description>This package contains AzureAppConfiguration client library.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>

<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:[email protected]:Azure/azure-sdk-for-java.git</connection>
<developerConnection>scm:git:[email protected]:Azure/azure-sdk-for-java.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>microsoft</id>
<name>Microsoft</name>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spotless.skip>false</spotless.skip>
</properties>
<dependencies>
<dependency>
<groupId>io.clientcore</groupId>
<artifactId>core</artifactId>
<version>1.0.0-beta.8</version> <!-- {x-version-update;io.clientcore:core;external_dependency} -->
</dependency>
<dependency>
<groupId>com.azure.v2</groupId>
<artifactId>azure-core</artifactId>
<version>2.0.0-beta.1</version> <!-- {x-version-update;com.azure.v2:azure-core;dependency} -->
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<executions>
<execution>
<id>run-annotation-processing</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<source>1.8</source>
<target>1.8</target>
<release>8</release>
<proc>only</proc>
<generatedSourcesDirectory>${project.build.directory}/generated-sources/</generatedSourcesDirectory>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>io.clientcore</groupId>
<artifactId>annotation-processor</artifactId>
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:annotation-processor;dependency} -->
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>io.clientcore.annotation.processor.AnnotationProcessor</annotationProcessor>
</annotationProcessors>
<compilerArgs>
<arg>-Xlint:-options</arg>
</compilerArgs>
<excludes>
<exclude>module-info.java</exclude>
</excludes>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>io.clientcore</groupId>
<artifactId>annotation-processor</artifactId>
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:annotation-processor;dependency} -->
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Loading
Loading