/plugin-module-codegen-engine/src/test/resources/test-pom-with-maven-plugin.xml
https://bitbucket.org/mmeinhold/amps · XML · 47 lines · 47 code · 0 blank · 0 comment · 0 complexity · ae195a474fd41dea7830f71234fa5d6e MD5 · raw file
- <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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.atlassian.plugins</groupId>
- <artifactId>amps-test-pom</artifactId>
- <version>1.0</version>
- <packaging>atlassian-plugin</packaging>
- <name>AMPS Test POM</name>
- <dependencies>
- <dependency>
- <groupId>com.atlassian.plugins</groupId>
- <artifactId>test-artifact-1</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.atlassian.plugins</groupId>
- <artifactId>test-artifact-2</artifactId>
- <version>1.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-amps-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-storage-plugin</id>
- <phase>process-resources</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.outputDirectory}</outputDirectory>
- <includeArtifactIds>plugin-license-storage-plugin</includeArtifactIds>
- <stripVersion>true</stripVersion>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>