Added: rave/trunk/rave-custom-project-archetype/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/rave/trunk/rave-custom-project-archetype/src/main/resources/archetype-resources/pom.xml?rev=1426955&view=auto ============================================================================== --- rave/trunk/rave-custom-project-archetype/src/main/resources/archetype-resources/pom.xml (added) +++ rave/trunk/rave-custom-project-archetype/src/main/resources/archetype-resources/pom.xml Sun Dec 30 15:48:35 2012 @@ -0,0 +1,173 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> +<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> + + <groupId>\${groupId}</groupId> + <artifactId>\${artifactId}</artifactId> + <name>\${projectName}</name> + <description>\${projectName}</description> + <packaging>pom</packaging> + <version>\${version}</version> + <properties> + <apache.rave.version>${project.version}</apache.rave.version> + <apache.wookie.version>${apache.wookie.version}</apache.wookie.version> + <com.h2database.version>${com.h2database.version}</com.h2database.version> + <org.springframework.version>${org.springframework.version}</org.springframework.version> + <javax.servlet.version>${javax.servlet.version}</javax.servlet.version> + <javax.mail.version>${javax.mail.version}</javax.mail.version> + <jsp-api.version>${jsp-api.version}</jsp-api.version> + <el-api.version>${el-api.version}</el-api.version> + <org.slf4j.version>${org.slf4j.version}</org.slf4j.version> + <log4j.version>${log4j.version}</log4j.version> + + <commons-lang.version>${commons-lang.version}</commons-lang.version> + <junit.version>${junit.version}</junit.version> + <easymock.version>${easymock.version}</easymock.version> + + <cargo.version>${cargo.version}</cargo.version> + <javaagent/> + + <!-- Force maven-filesync-plugin rewrite the Eclipse FileSync plugin configuration with + $mvn filesync:generate -Dmaven.filesync.override=true --> + <maven.filesync.override>${maven.filesync.override}</maven.filesync.override> + + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + + </properties> + + <repositories> + <repository> + <id>apache.snapshots</id> + <url>http://repository.apache.org/snapshots/</url> + <releases> + <enabled>false</enabled> + </releases> + <snapshots> + <updatePolicy>daily</updatePolicy> + </snapshots> + </repository> + </repositories> + + <build> + <defaultGoal>install</defaultGoal> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.2</version> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>2.3</version> + </plugin> + <plugin> + <groupId>com.googlecode.mavenfilesync</groupId> + <artifactId>maven-filesync-plugin</artifactId> + <version>1.0.0</version> + <configuration> + <override>\${maven.filesync.override}</override> + </configuration> + <executions> + <execution> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </pluginManagement> + + <plugins> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>com.github.searls</groupId> + <artifactId>jasmine-maven-plugin</artifactId> + <versionRange>[1.0.2-beta-2,)</versionRange> + <goals> + <goal>testResources</goal> + </goals> + </pluginExecutionFilter> + <action> + <execute /> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.codehaus.mojo</groupId> + <artifactId>openjpa-maven-plugin</artifactId> + <versionRange>[1.2,)</versionRange> + <goals> + <goal>enhance</goal> + </goals> + </pluginExecutionFilter> + <action> + <execute /> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>com.googlecode.mavenfilesync</groupId> + <artifactId>maven-filesync-plugin</artifactId> + <versionRange>[1.0.0,)</versionRange> + <goals> + <goal>generate</goal> + </goals> + </pluginExecutionFilter> + <action> + <execute /> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>com.github.searls</groupId> + <artifactId>jasmine-maven-plugin</artifactId> + <versionRange>[1.0.2-beta-2,)</versionRange> + <goals> + <goal>resources</goal> + <goal>generateManualRunner</goal> + </goals> + </pluginExecutionFilter> + <action> + <execute /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + + </plugins> + </build> +</project>
Added: rave/trunk/rave-custom-project-archetype/src/test/resources/projects/basic/archetype.properties URL: http://svn.apache.org/viewvc/rave/trunk/rave-custom-project-archetype/src/test/resources/projects/basic/archetype.properties?rev=1426955&view=auto ============================================================================== --- rave/trunk/rave-custom-project-archetype/src/test/resources/projects/basic/archetype.properties (added) +++ rave/trunk/rave-custom-project-archetype/src/test/resources/projects/basic/archetype.properties Sun Dec 30 15:48:35 2012 @@ -0,0 +1,25 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +#Sat Dec 29 17:34:06 CET 2012 +package=it.pkg +version=0.1-SNAPSHOT +groupId=archetype.it +artifactId=basic +projectName=project Added: rave/trunk/rave-custom-project-archetype/src/test/resources/projects/basic/goal.txt URL: http://svn.apache.org/viewvc/rave/trunk/rave-custom-project-archetype/src/test/resources/projects/basic/goal.txt?rev=1426955&view=auto ============================================================================== (empty) Modified: rave/trunk/rave-integration-tests/pom.xml URL: http://svn.apache.org/viewvc/rave/trunk/rave-integration-tests/pom.xml?rev=1426955&r1=1426954&r2=1426955&view=diff ============================================================================== --- rave/trunk/rave-integration-tests/pom.xml (original) +++ rave/trunk/rave-integration-tests/pom.xml Sun Dec 30 15:48:35 2012 @@ -46,7 +46,6 @@ <meta.filter /> <!-- Cargo configuration properties --> - <cargo.version>1.3.1</cargo.version> <!-- if you want a remote debugging on a different a address override on command line with -Dcargo.debug.addres=xxxx --> <cargo.debug.address>8000</cargo.debug.address> Modified: rave/trunk/rave-portal/pom.xml URL: http://svn.apache.org/viewvc/rave/trunk/rave-portal/pom.xml?rev=1426955&r1=1426954&r2=1426955&view=diff ============================================================================== --- rave/trunk/rave-portal/pom.xml (original) +++ rave/trunk/rave-portal/pom.xml Sun Dec 30 15:48:35 2012 @@ -33,7 +33,6 @@ <packaging>war</packaging> <properties> - <cargo.version>1.3.1</cargo.version> <!-- if you want a remote debugging on a different a address override on command line with -Dcargo.debug.addres=xxxx --> <cargo.debug.address>8000</cargo.debug.address>
