Author: jasha
Date: Sun Dec 30 14:09:51 2012
New Revision: 1426949
URL: http://svn.apache.org/viewvc?rev=1426949&view=rev
Log:
Build a project from the archetype during the build
Update license headers
Modified:
rave/sandbox/rave-extensions/rave-archetype/pom.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/pom.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/dist/conf/tomcat-users.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/applicationContext-security.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/web.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/test/resources/log4j.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/pom.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/src/main/webapp/WEB-INF/web.xml
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/pom.xml
rave/sandbox/rave-extensions/rave-archetype/src/test/resources/projects/basic/archetype.properties
Modified: rave/sandbox/rave-extensions/rave-archetype/pom.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/pom.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
--- rave/sandbox/rave-extensions/rave-archetype/pom.xml (original)
+++ rave/sandbox/rave-extensions/rave-archetype/pom.xml Sun Dec 30 14:09:51 2012
@@ -1,22 +1,22 @@
<?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.
--->
+ 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -31,6 +31,10 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+
<customproject.app.groupId>org.apache.rave.custom</customproject.app.groupId>
+ <customproject.app.artifactId>myproject</customproject.app.artifactId>
+ <customproject.app.version>1.01.00</customproject.app.version>
+ <customproject.app.name>My Custom Rave Project</customproject.app.name>
</properties>
<build>
@@ -42,14 +46,87 @@
</extension>
</extensions>
- <pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-archetype-plugin</artifactId>
- <version>2.2</version>
- </plugin>
- </plugins>
- </pluginManagement>
+ <plugins>
+ <plugin>
+ <artifactId>maven-archetype-plugin</artifactId>
+ <version>2.2</version>
+ <extensions>true</extensions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>generate-and-install-gettingstarted</id>
+ <phase>install</phase>
+ <configuration>
+ <tasks>
+ <echo message="$$$$$$$$$$ Deleting the
existing custom Rave project if it exists. $$$$$$$$$$"/>
+ <delete
dir="${project.build.directory}/${customproject.app.artifactId}"/>
+
+ <echo message="$$$$$$$$$$ Generating a custom
Rave project from the archetype $$$$$$$$$$"/>
+ <java
classname="org.codehaus.classworlds.Launcher" dir="${project.build.directory}"
+ fork="true" failonerror="true">
+ <permissions>
+ <grant
class="java.security.AllPermission"/>
+ <grant class="java.io.FilePermission"
name="${maven.home}/bin/m2.conf"
+ actions="read"/>
+ <grant
class="java.util.PropertyPermission" name="*" actions="read,write"/>
+ </permissions>
+ <sysproperty key="classworlds.conf"
value="${maven.home}/bin/m2.conf"/>
+ <sysproperty key="maven.home"
value="${maven.home}"/>
+ <classpath>
+ <fileset dir="${maven.home}/boot">
+ <include name="**/*.jar"/>
+ </fileset>
+ </classpath>
+ <arg
value="org.apache.maven.plugins:maven-archetype-plugin:2.2:generate"/>
+ <arg
value="-DarchetypeGroupId=org.apache.rave"/>
+ <arg
value="-DarchetypeArtifactId=rave-custom-project-archetype"/>
+ <arg
value="-DarchetypeVersion=${project.version}"/>
+ <arg
value="-DgroupId=${customproject.app.groupId}"/>
+ <arg
value="-DartifactId=${customproject.app.artifactId}"/>
+ <arg
value="-Dversion=${customproject.app.version}"/>
+ <arg
value="-DprojectName=${customproject.app.name}"/>
+ </java>
+
+ <echo message="$$$$$$$$$$ Installing custom
Rave project $$$$$$$$$$"/>
+ <java
classname="org.codehaus.classworlds.Launcher"
+
dir="${project.build.directory}/${customproject.app.artifactId}" fork="true"
+ failonerror="true">
+ <permissions>
+ <grant
class="java.security.AllPermission"/>
+ <grant class="java.io.FilePermission"
name="${maven.home}/bin/m2.conf"
+ actions="read"/>
+ <grant
class="java.util.PropertyPermission" name="*" actions="read,write"/>
+ </permissions>
+ <sysproperty key="classworlds.conf"
value="${maven.home}/bin/m2.conf"/>
+ <sysproperty key="maven.home"
value="${maven.home}"/>
+ <classpath>
+ <fileset dir="${maven.home}/boot">
+ <include name="**/*.jar"/>
+ </fileset>
+ </classpath>
+ <arg value="install"/>
+ </java>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-archetype-plugin</artifactId>
+ <version>2.2</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
</build>
</project>
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
Sun Dec 30 14:09:51 2012
@@ -16,61 +16,77 @@
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
--->
-<archetype-descriptor
xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0
http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd"
name="rave-custom-project"
-
xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modules>
- <module id="${rootArtifactId}-portal" dir="__rootArtifactId__-portal"
name="${rootArtifactId}-portal">
- <fileSets>
- <fileSet filtered="true" packaged="true" encoding="UTF-8">
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.java</include>
- </includes>
- </fileSet>
- <fileSet filtered="true" encoding="UTF-8">
- <directory>src/main/dist</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </fileSet>
- <fileSet filtered="true" encoding="UTF-8">
- <directory>src/main/webapp</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </fileSet>
- <fileSet encoding="UTF-8">
- <directory>src/main/webapp</directory>
- <includes>
- <include>**/*.tag</include>
- <include>**/*.css</include>
- </includes>
- </fileSet>
- <fileSet filtered="true" packaged="true" encoding="UTF-8">
- <directory>src/test/java</directory>
- <includes>
- <include>**/*.java</include>
- </includes>
- </fileSet>
- <fileSet filtered="true" encoding="UTF-8">
- <directory>src/test/resources</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </fileSet>
- </fileSets>
- </module>
- <module id="${rootArtifactId}-shindig" dir="__rootArtifactId__-shindig"
name="${rootArtifactId}-shindig">
- <fileSets>
- <fileSet filtered="true" encoding="UTF-8">
- <directory>src/main/webapp</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </fileSet>
- </fileSets>
- </module>
- </modules>
+ -->
+<archetype-descriptor
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0
http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd"
+ name="rave-custom-project"
+
xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <requiredProperties>
+ <requiredProperty key="groupId">
+ <defaultValue>org.example</defaultValue>
+ </requiredProperty>
+ <requiredProperty key="artifactId">
+ <defaultValue>myraveproject</defaultValue>
+ </requiredProperty>
+ <requiredProperty key="version">
+ <defaultValue>1.01.00-SNAPSHOT</defaultValue>
+ </requiredProperty>
+ <requiredProperty key="projectName">
+ <defaultValue>My Rave Project</defaultValue>
+ </requiredProperty>
+ </requiredProperties>
+ <modules>
+ <module id="${rootArtifactId}-portal" dir="__rootArtifactId__-portal"
name="${rootArtifactId}-portal">
+ <fileSets>
+ <fileSet filtered="true" packaged="true" encoding="UTF-8">
+ <directory>src/main/java</directory>
+ <includes>
+ <include>**/*.java</include>
+ </includes>
+ </fileSet>
+ <fileSet filtered="true" encoding="UTF-8">
+ <directory>src/main/dist</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </fileSet>
+ <fileSet filtered="true" encoding="UTF-8">
+ <directory>src/main/webapp</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </fileSet>
+ <fileSet encoding="UTF-8">
+ <directory>src/main/webapp</directory>
+ <includes>
+ <include>**/*.tag</include>
+ <include>**/*.css</include>
+ </includes>
+ </fileSet>
+ <fileSet filtered="true" packaged="true" encoding="UTF-8">
+ <directory>src/test/java</directory>
+ <includes>
+ <include>**/*.java</include>
+ </includes>
+ </fileSet>
+ <fileSet filtered="true" encoding="UTF-8">
+ <directory>src/test/resources</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ </module>
+ <module id="${rootArtifactId}-shindig"
dir="__rootArtifactId__-shindig" name="${rootArtifactId}-shindig">
+ <fileSets>
+ <fileSet filtered="true" encoding="UTF-8">
+ <directory>src/main/webapp</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+ </module>
+ </modules>
</archetype-descriptor>
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/pom.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/pom.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/pom.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/pom.xml
Sun Dec 30 14:09:51 2012
@@ -16,7 +16,8 @@
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/xsd/maven-4.0.0.xsd">
+ -->
+<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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>${rootArtifactId}</artifactId>
<groupId>${groupId}</groupId>
@@ -26,8 +27,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>${artifactId}</artifactId>
- <name>Apache Rave Custom Project :: ${artifactId}</name>
- <description>Apache Rave Custom Portal</description>
+ <name>${projectName} :: ${artifactId}</name>
<packaging>war</packaging>
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/dist/conf/tomcat-users.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/dist/conf/tomcat-users.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/dist/conf/tomcat-users.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/dist/conf/tomcat-users.xml
Sun Dec 30 14:09:51 2012
@@ -11,7 +11,7 @@
"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
+ 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
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/applicationContext-security.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/applicationContext-security.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/applicationContext-security.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/applicationContext-security.xml
Sun Dec 30 14:09:51 2012
@@ -3,22 +3,22 @@
#set( $symbol_escape = '\' )
<?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.
+ 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.
-->
<!--
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/web.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/web.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/web.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/main/webapp/WEB-INF/web.xml
Sun Dec 30 14:09:51 2012
@@ -19,9 +19,7 @@
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-
- ${symbol_dollar}Id: web.xml 1153583 2011-08-03 17:02:45Z jcian
${symbol_dollar}
--->
+ -->
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/test/resources/log4j.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/test/resources/log4j.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/test/resources/log4j.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-portal/src/test/resources/log4j.xml
Sun Dec 30 14:09:51 2012
@@ -19,9 +19,7 @@
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-
- ${symbol_dollar}Id: log4j.xml 1173531 2011-09-21 08:53:10Z ate
${symbol_dollar}
--->
+ -->
<!DOCTYPE log4j:configuration PUBLIC "-//LOGGER" "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/pom.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/pom.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/pom.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/pom.xml
Sun Dec 30 14:09:51 2012
@@ -16,7 +16,7 @@
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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>${rootArtifactId}</artifactId>
@@ -27,8 +27,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>${artifactId}</artifactId>
- <name>Apache Rave Custom Project :: ${artifactId}</name>
- <description>Apache Rave Custom Shindig</description>
+ <name>${projectName} :: ${artifactId}</name>
<packaging>war</packaging>
<dependencies>
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/src/main/webapp/WEB-INF/web.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/src/main/webapp/WEB-INF/web.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/src/main/webapp/WEB-INF/web.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/__rootArtifactId__-shindig/src/main/webapp/WEB-INF/web.xml
Sun Dec 30 14:09:51 2012
@@ -19,7 +19,7 @@
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
--->
+ -->
<!--
Exact copy of rave-shindig/src/main/webapp/WEB-INF/web.xml
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/pom.xml
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/pom.xml?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/pom.xml
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/main/resources/archetype-resources/pom.xml
Sun Dec 30 14:09:51 2012
@@ -16,14 +16,14 @@
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>Apache Rave Custom Project :: ${artifactId}</name>
- <description>Apache Rave Custom Project</description>
+ <name>${projectName}</name>
+ <description>${projectName}</description>
<packaging>pom</packaging>
<version>${version}</version>
<properties>
Modified:
rave/sandbox/rave-extensions/rave-archetype/src/test/resources/projects/basic/archetype.properties
URL:
http://svn.apache.org/viewvc/rave/sandbox/rave-extensions/rave-archetype/src/test/resources/projects/basic/archetype.properties?rev=1426949&r1=1426948&r2=1426949&view=diff
==============================================================================
---
rave/sandbox/rave-extensions/rave-archetype/src/test/resources/projects/basic/archetype.properties
(original)
+++
rave/sandbox/rave-extensions/rave-archetype/src/test/resources/projects/basic/archetype.properties
Sun Dec 30 14:09:51 2012
@@ -1,5 +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