/maven-amps-plugin/src/it/run/pom.xml
https://bitbucket.org/mmeinhold/amps · XML · 79 lines · 74 code · 4 blank · 1 comment · 0 complexity · ca8a0e574fcf47d0c20bd77e6bedcdb6 MD5 · raw file
- <project>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.atlassian.amps.it</groupId>
- <artifactId>maven-amps-plugin-run</artifactId>
- <packaging>atlassian-plugin</packaging>
- <version>testing</version>
- <name>TestRun</name>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-${shitty.product}-plugin</artifactId>
- <version>testing</version>
- <extensions>true</extensions>
- <configuration>
- <wait>false</wait>
- <writePropertiesToFile>true</writePropertiesToFile>
- </configuration>
- </plugin>
- <!-- this is used to run some tests against the running application -->
- <plugin>
- <groupId>org.codehaus.groovy.maven</groupId>
- <artifactId>gmaven-plugin</artifactId>
- <version>1.0</version>
- <configuration>
- <source>${project.build.directory}/it/run/webappassertions.groovy</source>
- <classpath>
- <element>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>http-builder</artifactId>
- </element>
- <element>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </element>
- <element>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- </element>
- <element>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <classifier>jdk15</classifier>
- </element>
- </classpath>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>http-builder</artifactId>
- <version>0.4.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.0-beta2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpcore</artifactId>
- <version>4.0-beta3</version>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <classifier>jdk15</classifier>
- <version>2.2.2</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>