2006-01-08 23:58:17 -05:00
|
|
|
<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>org.apache.maven.repository</groupId>
|
|
|
|
<artifactId>maven-repository-manager</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<artifactId>maven-repository-webapp</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>Maven Repository Manager Web Application</name>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-xwork-integration</artifactId>
|
2006-05-25 19:10:58 -04:00
|
|
|
<version>1.0-alpha-1</version>
|
2006-01-08 23:58:17 -05:00
|
|
|
</dependency>
|
2006-01-09 03:05:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.repository</groupId>
|
|
|
|
<artifactId>maven-repository-indexer</artifactId>
|
|
|
|
</dependency>
|
2006-02-23 01:53:23 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.repository</groupId>
|
|
|
|
<artifactId>maven-repository-discovery</artifactId>
|
|
|
|
</dependency>
|
2006-01-19 22:09:04 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.repository</groupId>
|
|
|
|
<artifactId>maven-repository-artifact-applet</artifactId>
|
|
|
|
<!-- TODO: actually, just exclude from WAR plugin -->
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2006-02-22 21:33:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-quartz</artifactId>
|
|
|
|
<version>1.0-alpha-2-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2006-01-08 23:58:17 -05:00
|
|
|
</dependencies>
|
2006-01-09 03:05:46 -05:00
|
|
|
<build>
|
|
|
|
<finalName>maven-repository-webapp</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>maven-jetty6-plugin</artifactId>
|
2006-05-25 19:10:58 -04:00
|
|
|
<version>6.0.0beta6</version>
|
2006-01-09 03:05:46 -05:00
|
|
|
<configuration>
|
2006-03-02 04:53:40 -05:00
|
|
|
<webAppSourceDirectory>${basedir}/target/${artifactId}</webAppSourceDirectory>
|
2006-01-09 03:05:46 -05:00
|
|
|
<scanIntervalSeconds>10</scanIntervalSeconds>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2006-01-19 22:09:04 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>dependency-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>maven-repository-artifact-applet</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<outputDirectory>src/main/webapp</outputDirectory>
|
|
|
|
<destFileName>maven-repository-artifact-applet.jar</destFileName>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2006-01-09 03:05:46 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2006-01-08 23:58:17 -05:00
|
|
|
</project>
|