diff options
author | Brett Porter <brett@apache.org> | 2006-06-08 07:15:34 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2006-06-08 07:15:34 +0000 |
commit | 86db5311d45b14c134307b9c8ee81d9d0e14f30e (patch) | |
tree | bcfa9ab4c9f236181ba05aac3c0c4f36fe6c9700 /maven-repository-configuration/pom.xml | |
parent | 8532c8ed0adc8db9738301da1dcda1271a3513c1 (diff) | |
download | archiva-86db5311d45b14c134307b9c8ee81d9d0e14f30e.tar.gz archiva-86db5311d45b14c134307b9c8ee81d9d0e14f30e.zip |
[MRM-46] introduce modello configuration, change indexer API to use a File for the index path, introduce a core module for moving the main application logic to
git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@412683 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven-repository-configuration/pom.xml')
-rw-r--r-- | maven-repository-configuration/pom.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/maven-repository-configuration/pom.xml b/maven-repository-configuration/pom.xml new file mode 100644 index 000000000..783bade26 --- /dev/null +++ b/maven-repository-configuration/pom.xml @@ -0,0 +1,40 @@ +<?xml version="1.0"?> +<project> + <parent> + <artifactId>maven-repository-manager</artifactId> + <groupId>org.apache.maven.repository</groupId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.apache.maven.repository</groupId> + <artifactId>maven-repository-configuration</artifactId> + <name>Maven Repository Manager Configuration</name> + <dependencies> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.modello</groupId> + <artifactId>modello-maven-plugin</artifactId> + <version>1.0-alpha-8</version> + <executions> + <execution> + <goals> + <goal>xpp3-writer</goal> + <goal>java</goal> + <goal>xpp3-reader</goal> + </goals> + </execution> + </executions> + <configuration> + <version>1.0.0</version> + <model>src/main/mdo/configuration.mdo</model> + </configuration> + </plugin> + </plugins> + </build> +</project> |