blob: d6ea733d431cdd7bf9718f90e8ea16ee1b7ebfb1 [file] [log] [blame]
<project>
<parent>
<artifactId>continuum-parent</artifactId>
<groupId>org.apache.maven.continuum</groupId>
<version>1.0-beta-1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>continuum-plexus-application</artifactId>
<packaging>plexus-application</packaging>
<name>Continuum Plexus Application</name>
<version>1.0-beta-1</version>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.0-beta-1</version>
<executions>
<execution>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptor>src/assembly/bin.xml</descriptor>
<finalName>continuum-1.0-beta-1</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>runtime</goal>
<goal>add-app</goal>
<goal>add-services</goal>
</goals>
</execution>
</executions>
<configuration>
<applicationConfiguration>src/conf/application.xml</applicationConfiguration>
<configurationsDirectory>src/conf</configurationsDirectory>
<configurationProperties>${appProperties}</configurationProperties>
<applicationName>continuum</applicationName>
<runtimeConfiguration>src/test/conf/test-runtime-configuration.xml</runtimeConfiguration>
<runtimeConfigurationProperties>${appProperties}</runtimeConfigurationProperties>
<runtimePath>target/plexus-test-runtime</runtimePath>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>env-test</id>
<activation>
<property>
<name>env</name>
<value>test</value>
</property>
</activation>
<properties>
<appProperties>test.properties</appProperties>
</properties>
</profile>
<profile>
<id>env-production</id>
<activation>
<property>
<name>env</name>
<value>production</value>
</property>
</activation>
<properties>
<appProperties>app.properties</appProperties>
</properties>
</profile>
</profiles>
<repositories>
<repository>
<id>apache.snapshots</id>
<url>http://cvs.apache.org/repository</url>
<layout>legacy</layout>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.maven.continuum</groupId>
<artifactId>continuum-xmlrpc</artifactId>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-velocity</artifactId>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-appserver</artifactId>
<version>1.0-alpha-4</version>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-container-artifact</artifactId>
<version>1.0-alpha-3</version>
</dependency>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http-lightweight</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-mail-sender-api</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-starteam</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>incubator-derby</groupId>
<artifactId>derby</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-service-xmlrpc</artifactId>
<version>1.0-alpha-2</version>
<type>plexus-service</type>
</dependency>
<dependency>
<groupId>org.apache.maven.continuum</groupId>
<artifactId>continuum-notifier-jabber</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.continuum</groupId>
<artifactId>continuum-notifier-msn</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.continuum</groupId>
<artifactId>continuum-web</artifactId>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.continuum</groupId>
<artifactId>continuum-notifier-irc</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-local</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-service-jetty</artifactId>
<version>1.0-alpha-2</version>
<type>plexus-service</type>
</dependency>
<dependency>
<groupId>plexus</groupId>
<artifactId>plexus-mail-sender-javamail</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-cvs</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-svn</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>