spring-cloud-deployer-yarn-build-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-deployer-yarn-build-tests</artifactId> <version>1.2.0.RELEASE</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> <artifactId>spring-cloud-deployer-yarn-build-tests</artifactId> <packaging>jar</packaging> <name>spring-cloud-deployer-yarn-build-tests</name> <description>Yarn SPI tests</description> <parent> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-deployer-yarn-parent</artifactId> <version>1.2.0.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-yarn-boot-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-core</artifactId> <version>1.9</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> <version>1.9</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> <version>1.9</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-deployer-yarn</artifactId> <version>1.2.0.RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-deployer-resource-maven</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-deployer-yarn-appdeployerappmaster</artifactId> <version>1.2.0.RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-deployer-yarn-tasklauncherappmaster</artifactId> <version>1.2.0.RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.1</version> <configuration> <descriptors> <descriptor>src/main/assembly/assembly.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>test-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>${project.name}</finalName> <appendAssemblyId>false</appendAssemblyId> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <argLine>-Xmx2048m -XX:MaxPermSize=768m</argLine> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.internetitem</groupId> <artifactId>write-properties-file-maven-plugin</artifactId> <version>1.0.1</version> <executions> <execution> <id>one</id> <phase>compile</phase> <goals> <goal>write-properties-file</goal> </goals> <configuration> <outputDirectory>${basedir}/target/spring-cloud-deployer-yarn-build-tests</outputDirectory> <filename>test.properties</filename> <properties> <property> <name>projectVersion</name> <value>${project.version}</value> </property> <property> <name>artifactVersion</name> <value>1.0.0.BUILD-SNAPSHOT</value> </property> </properties> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>