blob: b4cb54f292f58c8105e3bb77d09e3d6e4d704f90 [file] [log] [blame]
<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>
<artifactId>extscript-examples</artifactId>
<packaging>pom</packaging>
<name>Examples Submodule</name>
<version>1.0.3</version>
<description>
Examples Meta Project, see the subprojects
for starting various parts of ext-scripting
</description>
<parent>
<groupId>org.apache.myfaces.extensions.scripting</groupId>
<artifactId>extscript-root</artifactId>
<version>1.0.3</version>
</parent>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/extensions/scripting/tags/extscript-root-1.0.3/extscript-examples
</connection>
<developerConnection>
scm:svn:https://svn.apache.org/repos/asf/myfaces/extensions/scripting/tags/extscript-root-1.0.3/extscript-examples
</developerConnection>
<url>http://svn.apache.org/viewvc/myfaces/extensions/scripting/tags/extscript-root-1.0.3/extscript-examples</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.2.v20120308</version>
<configuration>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>9090</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
<scanIntervalSeconds>1</scanIntervalSeconds>
</configuration>
</plugin>
<!-- tomcat plugin as alternative testing ground -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.0</version>
</plugin>
</plugins>
</build>
<modules>
<!--
<module>myfaces12-example</module>
-->
<module>myfaces20-example</module>
<module>myfaces20-extscript-helloworld</module>
<module>blog-example</module>
<!--
<module>spring-example</module>
-->
</modules>
<profiles>
<!--
This profile is started with -D development and fetches in a secondary
web.xml which is used internally for development purposes
-->
<profile>
<id>development</id>
<properties>
<maven.war.webxml>${basedir}/src/main/conf/dev/web.xml</maven.war.webxml>
</properties>
</profile>
</profiles>
</project>