diff options
author | Brett Porter <brett@apache.org> | 2010-03-09 08:00:25 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2010-03-09 08:00:25 +0000 |
commit | cd9c1097d1aa5ef92dcd66002c125d33dfa13895 (patch) | |
tree | b0f8f5eb22c3c36b6d40d4879308b11bb9495079 /archiva-modules/pom.xml | |
parent | af2a929978a21ddd615ab84e3b1bb4ebe3c7f3b7 (diff) | |
download | archiva-cd9c1097d1aa5ef92dcd66002c125d33dfa13895.tar.gz archiva-cd9c1097d1aa5ef92dcd66002c125d33dfa13895.zip |
[MRM-1282] start to implement maven metadata for artifacts, splitting from existing sources
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@920722 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/pom.xml')
-rw-r--r-- | archiva-modules/pom.xml | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/archiva-modules/pom.xml b/archiva-modules/pom.xml index 03c52a0d3..1ab9386fc 100644 --- a/archiva-modules/pom.xml +++ b/archiva-modules/pom.xml @@ -16,7 +16,9 @@ ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. - --><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"> + --> +<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>archiva</artifactId> <groupId>org.apache.archiva</groupId> @@ -34,6 +36,16 @@ <module>metadata</module> <module>plugins</module> </modules> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <version>1.8.3</version> + <scope>test</scope> + </dependency> + </dependencies> + </dependencyManagement> <build> <pluginManagement> <plugins> @@ -82,13 +94,13 @@ </configuration> </plugin> --> -<!-- TODO: OOME - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>1.1.1</version> - </plugin> ---> + <!-- TODO: OOME + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>1.1.1</version> + </plugin> + --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> |