azure-sdk-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure.tools</groupId> <artifactId>azure-sdk-archetype</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.tools</groupId> <artifactId>azure-sdk-archetype</artifactId> <version>1.0.0</version> <name>Azure SDK Maven archetype</name> <description>Azure SDK archetype to generate a new Maven project with recommended Azure SDK tools and configuration.</description> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <url>https://github.com/azure/azure-sdk-for-java</url> <organization> <name>Microsoft Corporation</name> <url>http://microsoft.com</url> </organization> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>microsoft</id> <name>Microsoft Corporation</name> </developer> </developers> <issueManagement> <system>GitHub</system> <url>https://github.com/Azure/azure-sdk-for-java/issues</url> </issueManagement> <scm> <url>https://github.com/Azure/azure-sdk-for-java</url> <connection>scm:git:https://github.com/Azure/azure-sdk-for-java.git</connection> <developerConnection/> <tag>HEAD</tag> </scm> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.2.0</version> <!-- {x-version-update;org.apache.maven.archetype:archetype-packaging;external_dependency} --> </extension> </extensions> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.archetype</groupId> <artifactId>maven-archetype-plugin</artifactId> <version>3.2.0</version> <!-- {x-version-update;org.apache.maven.archetype:maven-archetype-plugin;external_dependency} --> </plugin> </plugins> </pluginManagement> </build> </project>