azure-autorest-customization
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure.tools</groupId> <artifactId>azure-autorest-customization</artifactId> <version>1.0.0-beta.11</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- 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> <parent> <artifactId>azure-autorest-parent</artifactId> <groupId>com.azure.tools</groupId> <version>1.0.0-beta.5</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>com.azure.tools</groupId> <artifactId>azure-autorest-customization</artifactId> <version>1.0.0-beta.11</version> <name>Microsoft Azure AutoRest for Java Customization</name> <description>This module contains the base classes needed for customizing a generated library.</description> <url>https://github.com/Azure/autorest.java</url> <properties> <codesnippet.skip>false</codesnippet.skip> <!-- ClassCustomizationTests requires language server on a single port. --> <parallelizeTests>false</parallelizeTests> </properties> <dependencies> <dependency> <groupId>com.azure</groupId> <artifactId>azure-json</artifactId> <version>1.5.0</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-xml</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>com.azure.tools</groupId> <artifactId>azure-autorest-extension</artifactId> <version>1.0.0-beta.5</version> </dependency> <dependency> <groupId>com.github.javaparser</groupId> <artifactId>javaparser-core</artifactId> <version>3.25.10</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.14</version> </dependency> <dependency> <groupId>org.eclipse.lsp4j</groupId> <artifactId>org.eclipse.lsp4j</artifactId> <version>0.21.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.11.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.11.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.11.2</version> <scope>test</scope> </dependency> </dependencies> </project>