diff options
author | skygo <skygo@unknown> | 2012-09-01 12:24:41 +0000 |
---|---|---|
committer | skygo <skygo@unknown> | 2012-09-01 12:24:41 +0000 |
commit | 23a775efab2c91b042c6d02d05257bc89cae2af8 (patch) | |
tree | 18fe0f42f37852df0168212430d0fa22798a9c1d /archiva-modules/plugins | |
parent | c4eb81648468e86ad971c7369879d9727dcb7fc5 (diff) | |
download | archiva-23a775efab2c91b042c6d02d05257bc89cae2af8.tar.gz archiva-23a775efab2c91b042c6d02d05257bc89cae2af8.zip |
my bad: add missing test resources for repo group test in maven 2 repository
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1379750 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/plugins')
-rw-r--r-- | archiva-modules/plugins/maven2-repository/src/test/resources/com/example/test/test-artifact-module-b/1.0/test-artifact-module-b-1.0.pom | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/archiva-modules/plugins/maven2-repository/src/test/resources/com/example/test/test-artifact-module-b/1.0/test-artifact-module-b-1.0.pom b/archiva-modules/plugins/maven2-repository/src/test/resources/com/example/test/test-artifact-module-b/1.0/test-artifact-module-b-1.0.pom new file mode 100644 index 000000000..1ba7d8710 --- /dev/null +++ b/archiva-modules/plugins/maven2-repository/src/test/resources/com/example/test/test-artifact-module-b/1.0/test-artifact-module-b-1.0.pom @@ -0,0 +1,20 @@ +<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> + <parent> + <groupId>com.example.test</groupId> + <artifactId>test-snapshot-artifact-root</artifactId> + <version>1.1-SNAPSHOT</version> + </parent> + <artifactId>test-artifact-module-b</artifactId> + <packaging>jar</packaging> + <version>1.0</version> + <name>Test Artifact :: Module B</name> + <url>http://maven.apache.org</url> + <dependencies> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + </dependencies> +</project> |