<?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> <groupId>com.perforce.p4maven.it</groupId> <artifactId>p4maven-update-it</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <version>@maven.scm.plugin.it.version@</version> <dependencies> <dependency> <groupId>@project.groupId@</groupId> <artifactId>@project.artifactId@</artifactId> <version>@project.version@</version> </dependency> </dependencies> <configuration> <connectionUrl>@scmItUrl@</connectionUrl> </configuration> <executions> <execution> <id>checkout</id> <phase>test</phase> <goals> <goal>checkout</goal> </goals> </execution> <execution> <id>update</id> <phase>test</phase> <goals> <goal>update</goal> </goals> <configuration> <workingDirectory>${project.build.directory}/checkout</workingDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 11272 | jkovisto |
Populate //guest/joel_kovisto/p4maven/... from //guest/perforce_software/p4maven/.... |
||
//guest/perforce_software/p4maven/main/p4maven-provider/src/it/update/pom.xml | |||||
#1 | 10055 | Matt Attaway | Pull over numerous changes from @dantran's branch. | ||
//guest/dantran/p4maven/p4maven-provider/src/it/update/pom.xml | |||||
#2 | 9620 | dantran | remove cvsexe exclusions | ||
#1 | 9519 | dantran | folder rename to match with its artifactId | ||
//guest/dantran/p4maven/com.perforce.maven/src/it/update/pom.xml | |||||
#2 | 9499 | dantran |
Discover latest revision expected by scm:update goal Check for error under IFileSpec during client discovery |
||
#1 | 9192 | dantran | add IT |