azure-batch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-batch</artifactId> <version>11.2.0</version> </dependency>
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. --> <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> <groupId>com.azure</groupId> <artifactId>azure-data-sdk-parent</artifactId> <version>1.3.0</version> <!-- {x-version-update;com.azure:azure-data-sdk-parent;current} --> <relativePath>../../parents/azure-data-sdk-parent</relativePath> </parent> <groupId>com.microsoft.azure</groupId> <artifactId>azure-batch</artifactId> <packaging>jar</packaging> <version>11.2.0</version> <!-- {x-version-update;com.microsoft.azure:azure-batch;current} --> <name>Microsoft Azure Batch SDK Root</name> <description>This package contains the root module of Microsoft Azure Batch SDK.</description> <url>https://github.com/Azure/azure-sdk-for-java</url> <distributionManagement> <site> <id>azure-java-build-docs</id> <url>${site.url}/site/${project.artifactId}</url> </site> </distributionManagement> <scm> <url>https://github.com/Azure/azure-sdk-for-java</url> </scm> <dependencies> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-client-runtime</artifactId> <version>1.7.14</version> <!-- {x-version-update;com.microsoft.azure:azure-client-runtime;external_dependency} --> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>adal4j</artifactId> <version>1.6.5</version> <!-- {x-version-update;com.microsoft.azure:adal4j;external_dependency} --> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.15</version> <!-- {x-version-update;commons-codec:commons-codec;external_dependency} --> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <!-- {x-version-update;junit:junit;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-storage</artifactId> <version>8.0.0</version> <!-- {x-version-update;com.microsoft.azure:azure-storage;external_dependency} --> <scope>test</scope> </dependency> <!-- Storage pulls in an old version of jackson-core; so we explicitly set it in test. --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.17.2</version> <!-- {x-version-update;com.fasterxml.jackson.core:jackson-core;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure</artifactId> <version>1.24.1</version> <!-- {x-version-update;com.microsoft.azure:azure;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core</artifactId> <version>1.51.0</version> <!-- {x-version-update;com.azure:azure-core;dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-network</artifactId> <version>1.33.0</version> <!-- {x-version-update;com.microsoft.azure:azure-mgmt-network;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> <!-- {x-version-update;commons-io:commons-io;external_dependency} --> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-resources</artifactId> <version>1.3.1-SNAPSHOT</version> <!-- {x-version-update;test_jar_com.microsoft.azure:azure-mgmt-resources;external_dependency} --> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-mgmt-resources</artifactId> <version>1.3.0</version> <!-- {x-version-update;com.microsoft.azure:azure-mgmt-resources;external_dependency} --> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.4.33.v20201020</version> <!-- {x-version-update;org.eclipse.jetty:jetty-maven-plugin;external_dependency} --> <configuration> <scanIntervalSeconds>0</scanIntervalSeconds> <stopPort>11079</stopPort> <stopKey>stop-azure-batch</stopKey> <stopWait>20</stopWait> <waitForChild>false</waitForChild> <jettyXml>../../../jetty.xml</jettyXml> <supportedPackagings>jar</supportedPackagings> </configuration> <executions> <execution> <id>start-jetty</id> <phase>process-test-classes</phase> <goals> <goal>run-forked</goal> </goals> </execution> <execution> <id>stop-jetty</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <!-- {x-version-update;org.apache.maven.plugins:maven-compiler-plugin;external_dependency} --> <configuration> <source>1.7</source> <target>1.7</target> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <!-- {x-version-update;org.apache.maven.plugins:maven-resources-plugin;external_dependency} --> <configuration> <outputDirectory>${basedir}/target/test-classes/session-records</outputDirectory> <resources> <resource> <directory>${basedir}/src/test/resources/test-recordings</directory> </resource> </resources> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>java9plus</id> <activation> <jdk>[9,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version><!-- {x-version-update;org.apache.maven.plugins:maven-surefire-plugin;external_dependency} --> <configuration> <reuseForks>false</reuseForks> <argLine> -Xmx4096m --add-exports com.azure.core/com.azure.core.implementation.http=ALL-UNNAMED --add-opens com.microsoft.azure.batch/com.microsoft.azure.batch=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED </argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>