Author: hboutemy Date: Mon Mar 3 09:23:41 2008 New Revision: 633187 URL: http://svn.apache.org/viewvc?rev=633187&view=rev Log: [MANTTASKS-107] use repository defined in pom to download parent pom when defining pom reference
Added: maven/ant-tasks/trunk/src/test/pom-with-parent2.xml (with props) Added: maven/ant-tasks/trunk/src/test/pom-with-parent2.xml URL: http://svn.apache.org/viewvc/maven/ant-tasks/trunk/src/test/pom-with-parent2.xml?rev=633187&view=auto ============================================================================== --- maven/ant-tasks/trunk/src/test/pom-with-parent2.xml (added) +++ maven/ant-tasks/trunk/src/test/pom-with-parent2.xml Mon Mar 3 09:23:41 2008 @@ -0,0 +1,23 @@ +<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"> + <parent> + <artifactId>pom</artifactId> + <groupId>it.ant-tasks</groupId> + <version>1.0</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>project-with-parent-pom</artifactId> + <version>2.0-beta-4-SNAPSHOT</version> + <repositories> + <repository> + <id>test.repo</id> + <url>file:./src/test/repo</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + </releases> + </repository> + </repositories> +</project> Propchange: maven/ant-tasks/trunk/src/test/pom-with-parent2.xml ------------------------------------------------------------------------------ svn:eol-style = native