2008-02-29 02:08:03 -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.archiva</groupId>
|
|
|
|
<artifactId>archiva-web-standalone</artifactId>
|
|
|
|
<version>1.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2008-02-29 04:13:06 -05:00
|
|
|
<artifactId>archiva-jetty</artifactId>
|
2008-02-29 02:08:03 -05:00
|
|
|
<!-- Bug in appassembler prevents using a purely attached assembly
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
-->
|
2008-02-29 04:13:06 -05:00
|
|
|
<name>Archiva Web :: Jetty</name>
|
2008-02-29 02:08:03 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
<version>6.1.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>start</artifactId>
|
|
|
|
<version>6.1.6</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Include a webapp you want to bundle -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.archiva</groupId>
|
|
|
|
<artifactId>archiva-webapp</artifactId>
|
|
|
|
<!-- <version>1.1-SNAPSHOT</version> -->
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.archiva</groupId>
|
|
|
|
<artifactId>archiva-docs</artifactId>
|
|
|
|
<type>zip</type>
|
|
|
|
<classifier>docs</classifier>
|
|
|
|
</dependency>
|
|
|
|
<!-- Runtime dependencies that need to be included in the generated binaries -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-naming</artifactId>
|
|
|
|
<version>6.1.6</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>servlet-api-2.5</artifactId>
|
|
|
|
<version>6.1.6</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jsp-api-2.0</artifactId>
|
|
|
|
<version>6.1.6</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
|
|
|
<version>6.1.6</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
<version>10.1.3.1</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.6.5</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-el</groupId>
|
|
|
|
<artifactId>commons-el</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>tomcat</groupId>
|
|
|
|
<artifactId>jasper-compiler</artifactId>
|
|
|
|
<version>5.5.15</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>tomcat</groupId>
|
|
|
|
<artifactId>jasper-compiler-jdt</artifactId>
|
|
|
|
<version>5.5.15</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>tomcat</groupId>
|
|
|
|
<artifactId>jasper-runtime</artifactId>
|
|
|
|
<version>5.5.15</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl104-over-slf4j</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
<version>2.6.2</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xmlParserAPIs</artifactId>
|
|
|
|
<version>2.6.2</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo.appassembler</groupId>
|
|
|
|
<artifactId>appassembler-maven-plugin</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<configuration>
|
|
|
|
<daemons>
|
|
|
|
<daemon>
|
|
|
|
<id>archiva</id>
|
|
|
|
<mainClass>org.mortbay.start.Main</mainClass>
|
|
|
|
<commandLineArguments>
|
|
|
|
<commandLineArgument>etc/jetty.xml</commandLineArgument>
|
|
|
|
<commandLineArgument>etc/jetty-logging.xml</commandLineArgument>
|
|
|
|
</commandLineArguments>
|
|
|
|
<platforms>
|
|
|
|
<platform>jsw</platform>
|
2008-03-04 05:03:36 -05:00
|
|
|
</platforms>
|
2008-02-29 02:08:03 -05:00
|
|
|
<generatorConfigurations>
|
|
|
|
<generatorConfiguration>
|
|
|
|
<generator>jsw</generator>
|
|
|
|
<configuration>
|
|
|
|
<property>
|
|
|
|
<name>wrapper.console.loglevel</name>
|
|
|
|
<value>INFO</value>
|
|
|
|
</property>
|
2008-03-04 05:03:36 -05:00
|
|
|
<property>
|
|
|
|
<name>wrapper.java.additional.1.stripquotes</name>
|
|
|
|
<value>TRUE</value>
|
|
|
|
</property>
|
2008-02-29 02:08:03 -05:00
|
|
|
</configuration>
|
|
|
|
</generatorConfiguration>
|
2008-03-04 05:03:36 -05:00
|
|
|
</generatorConfigurations>
|
|
|
|
<jvmSettings>
|
|
|
|
<systemProperties>
|
|
|
|
<systemProperty>appserver.base="."</systemProperty>
|
|
|
|
</systemProperties>
|
|
|
|
</jvmSettings>
|
2008-02-29 02:08:03 -05:00
|
|
|
</daemon>
|
2008-03-04 05:03:36 -05:00
|
|
|
</daemons>
|
2008-02-29 02:08:03 -05:00
|
|
|
<!-- TODO:
|
|
|
|
<repoPath>lib</repoPath>
|
|
|
|
-->
|
|
|
|
<repositoryLayout>flat</repositoryLayout>
|
|
|
|
<assembleDirectory>target/generated-resources/appassembler/jsw/archiva</assembleDirectory>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>generate-daemons</goal>
|
|
|
|
<goal>create-repository</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/bin.xml</descriptor>
|
|
|
|
<finalName>apache-archiva-${version}</finalName>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>config</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<copy todir="target/generated-resources/appassembler/jsw/archiva/conf">
|
|
|
|
<fileset dir="src/main/appserver/conf" />
|
|
|
|
</copy>
|
|
|
|
<copy todir="target/generated-resources/appassembler/jsw/archiva/etc">
|
|
|
|
<fileset dir="src/main/etc" />
|
|
|
|
</copy>
|
|
|
|
<mkdir dir="target/generated-resources/appassembler/jsw/archiva/logs"/>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|