2008-07-07 22:01:17 -04: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">
|
2008-02-29 02:08:03 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2008-03-28 23:09:22 -04:00
|
|
|
<artifactId>archiva</artifactId>
|
2009-08-27 05:30:51 -04:00
|
|
|
<version>1.2.2</version>
|
2008-02-29 02:08:03 -05:00
|
|
|
</parent>
|
2008-02-29 04:13:06 -05:00
|
|
|
<artifactId>archiva-jetty</artifactId>
|
2008-02-29 02:08:03 -05:00
|
|
|
<packaging>pom</packaging>
|
2008-03-27 02:11:49 -04:00
|
|
|
<!-- This is filtered into the scripts, so should be set to Apache Archiva -->
|
|
|
|
<name>Apache Archiva</name>
|
2008-02-29 02:08:03 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>start</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
<version>${jetty.version}</version>
|
2008-02-29 02:08:03 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2008-02-29 02:08:03 -05:00
|
|
|
<artifactId>archiva-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2008-02-29 02:08:03 -05:00
|
|
|
<artifactId>archiva-docs</artifactId>
|
|
|
|
<type>zip</type>
|
|
|
|
<classifier>docs</classifier>
|
|
|
|
</dependency>
|
2008-03-06 21:24:12 -05:00
|
|
|
<!-- Runtime dependencies that need to be included in the generated binaries -->
|
2008-02-29 02:08:03 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-naming</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
<version>${jetty.version}</version>
|
2008-02-29 02:08:03 -05:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
2009-07-16 02:57:47 -04:00
|
|
|
<artifactId>jsp-2.1-jetty</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
<version>${jetty.version}</version>
|
2008-02-29 02:08:03 -05:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
<version>${jetty.version}</version>
|
2008-02-29 02:08:03 -05:00
|
|
|
<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>
|
2008-06-19 23:49:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-dbcp</groupId>
|
|
|
|
<artifactId>commons-dbcp</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
</dependency>
|
2008-02-29 02:08:03 -05:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2008-05-19 16:59:55 -04:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
2008-02-29 02:08:03 -05:00
|
|
|
<artifactId>appassembler-maven-plugin</artifactId>
|
2009-02-20 04:18:26 -05:00
|
|
|
<version>1.0</version>
|
2008-02-29 02:08:03 -05:00
|
|
|
<configuration>
|
|
|
|
<daemons>
|
|
|
|
<daemon>
|
|
|
|
<id>archiva</id>
|
|
|
|
<mainClass>org.mortbay.start.Main</mainClass>
|
|
|
|
<commandLineArguments>
|
2008-03-27 02:35:30 -04:00
|
|
|
<commandLineArgument>conf/jetty.xml</commandLineArgument>
|
2008-02-29 02:08:03 -05:00
|
|
|
</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-03-26 23:09:43 -04:00
|
|
|
<property>
|
|
|
|
<name>set.default.REPO_DIR</name>
|
|
|
|
<value>lib</value>
|
|
|
|
</property>
|
2008-03-26 22:09:02 -04:00
|
|
|
<property>
|
|
|
|
<name>wrapper.logfile</name>
|
2009-07-11 22:40:25 -04:00
|
|
|
<value>%ARCHIVA_BASE%/logs/wrapper.YYYYMMDD.log</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>wrapper.logfile.rollmode</name>
|
|
|
|
<value>DATE</value>
|
2008-03-28 04:07:38 -04:00
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>wrapper.app.parameter.2</name>
|
2008-03-31 01:05:49 -04:00
|
|
|
<value>%ARCHIVA_BASE%/conf/jetty.xml</value>
|
2008-03-28 04:07:38 -04:00
|
|
|
</property>
|
2008-03-31 01:05:49 -04:00
|
|
|
<property>
|
|
|
|
<name>app.base.envvar</name>
|
|
|
|
<value>ARCHIVA_BASE</value>
|
2008-03-26 22:09:02 -04:00
|
|
|
</property>
|
2008-06-10 07:58:02 -04:00
|
|
|
<property>
|
|
|
|
<name>wrapper.on_exit.default</name>
|
|
|
|
<value>RESTART</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>wrapper.on_exit.0</name>
|
|
|
|
<value>SHUTDOWN</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>wrapper.restart.delay</name>
|
|
|
|
<value>30</value>
|
|
|
|
</property>
|
2008-02-29 02:08:03 -05:00
|
|
|
</configuration>
|
2008-08-12 03:08:44 -04:00
|
|
|
<includes>
|
|
|
|
<include>linux-x86-32</include>
|
|
|
|
<include>linux-x86-64</include>
|
|
|
|
<include>macosx-x86-universal-32</include>
|
|
|
|
<include>solaris-x86-32</include>
|
|
|
|
<include>solaris-sparc-32</include>
|
|
|
|
<include>solaris-sparc-64</include>
|
|
|
|
<include>windows-x86-32</include>
|
|
|
|
</includes>
|
2008-02-29 02:08:03 -05:00
|
|
|
</generatorConfiguration>
|
2008-03-04 05:03:36 -05:00
|
|
|
</generatorConfigurations>
|
2008-03-26 20:55:25 -04:00
|
|
|
<jvmSettings>
|
|
|
|
<systemProperties>
|
2008-03-30 23:10:05 -04:00
|
|
|
<systemProperty>appserver.home=.</systemProperty>
|
2008-03-31 01:05:49 -04:00
|
|
|
<systemProperty>appserver.base=%ARCHIVA_BASE%</systemProperty>
|
|
|
|
<!-- can't set this at present, it moves the databases if ARCHIVA_BASE is not set
|
|
|
|
<systemProperty>derby.system.home=%ARCHIVA_BASE%/logs</systemProperty>
|
2008-03-28 10:30:43 -04:00
|
|
|
-->
|
2008-03-31 01:05:49 -04:00
|
|
|
<systemProperty>jetty.logs=%ARCHIVA_BASE%/logs</systemProperty>
|
2008-03-26 20:55:25 -04:00
|
|
|
</systemProperties>
|
|
|
|
</jvmSettings>
|
2008-02-29 02:08:03 -05:00
|
|
|
</daemon>
|
2008-03-04 05:03:36 -05:00
|
|
|
</daemons>
|
2008-03-26 23:09:43 -04:00
|
|
|
<repoPath>lib</repoPath>
|
2008-02-29 02:08:03 -05:00
|
|
|
<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>
|
|
|
|
<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>
|
2008-05-15 21:02:49 -04:00
|
|
|
<version>1.1</version>
|
2008-02-29 02:08:03 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>config</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<copy todir="target/generated-resources/appassembler/jsw/archiva/conf">
|
2008-03-27 02:35:30 -04:00
|
|
|
<fileset dir="src/main/conf" />
|
2008-02-29 02:08:03 -05:00
|
|
|
</copy>
|
2008-07-07 22:01:17 -04:00
|
|
|
<mkdir dir="target/generated-resources/appassembler/jsw/archiva/logs" />
|
2008-02-29 02:08:03 -05:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2008-07-03 07:39:27 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<supplementalModels>
|
|
|
|
<supplementalModel>notice-supplements.xml</supplementalModel>
|
|
|
|
</supplementalModels>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2008-02-29 02:08:03 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|