Author: michiel Date: 2009-09-08 23:25:37 +0200 (Tue, 08 Sep 2009) New Revision: 38524
Added: mmbase/trunk/maven-base/applications/ mmbase/trunk/maven-base/applications/pom.xml Modified: mmbase/trunk/pom.xml Log: Added: mmbase/trunk/maven-base/applications/pom.xml =================================================================== --- mmbase/trunk/maven-base/applications/pom.xml (rev 0) +++ mmbase/trunk/maven-base/applications/pom.xml 2009-09-08 21:25:37 UTC (rev 38524) @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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.mmbase</groupId> + <artifactId>mmbase-parent</artifactId> + <version>1.9-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>mmbase-application-parent</artifactId> + <packaging>pom</packaging> + <name>MMBase Applications</name> + <version>1.9-SNAPSHOT</version> + + <description> + Applications are war overlays then can plug in some functionality into an existing MMBase installation. + This would normally contain at least a 'component', but it can e.g. also be only a security implementation. + </description> + + <dependencies> + <dependency> + <groupId>org.mmbase</groupId> + <artifactId>mmbase</artifactId> + <version>${mmbase.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>${jsp.groupId}</groupId> + <artifactId>jsp-api</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jstl</artifactId> + <scope>provided</scope> + </dependency> + + </dependencies> + + <scm> + <url>https://scm.mmbase.org/mmbase/trunk/applications/</url> + </scm> + + <build> + <plugins> + <plugin> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <failOnMissingWebXml>false</failOnMissingWebXml> + </configuration> + </plugin> + <plugin> + <groupId>org.mmbase.maven</groupId> + <artifactId>maven-mmbase-plugin</artifactId> + <version>1.9-SNAPSHOT</version> + <executions> + <execution> + <id>create-index-files</id> + <goals> + <goal>create-index-files</goal> + </goals> + </execution> + <execution> + <id>copy-web-resources</id> + <goals> + <goal>install-resources</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> Modified: mmbase/trunk/pom.xml =================================================================== --- mmbase/trunk/pom.xml 2009-09-08 20:52:22 UTC (rev 38523) +++ mmbase/trunk/pom.xml 2009-09-08 21:25:37 UTC (rev 38524) @@ -562,6 +562,7 @@ <modules> <module>maven</module> <module>maven-base</module> + <module>maven-base/applications</module> <module>core</module> <module>applications</module> <module>contributions</module> _______________________________________________ Cvs mailing list [email protected] http://lists.mmbase.org/mailman/listinfo/cvs
