Author: dashorst
Date: Thu Mar 22 17:03:31 2007
New Revision: 521538
URL: http://svn.apache.org/viewvc?view=rev&rev=521538
Log:
Quickstart changes for own distribution
Added:
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/
- copied from r521526,
incubator/wicket/branches/wicket-1.2.x/wicket-quickstart/src/assembly/
Modified:
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/pom.xml
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/bin.xml
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/build.xml
Modified:
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/pom.xml?view=diff&rev=521538&r1=521537&r2=521538
==============================================================================
---
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/pom.xml
(original)
+++
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/pom.xml
Thu Mar 22 17:03:31 2007
@@ -55,4 +55,22 @@
<artifactId>jetty-management</artifactId>
</dependency>
</dependencies>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+
<groupId>org.apache.maven.plugins</groupId>
+
<artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-SNAPSHOT</version>
+ <configuration>
+
<appendAssemblyId>false</appendAssemblyId>
+
<tarLongFileMode>gnu</tarLongFileMode>
+ <descriptors>
+
<descriptor>${basedir}/src/assembly/bin.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
</project>
Modified:
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/bin.xml?view=diff&rev=521538&r1=521526&r2=521538
==============================================================================
---
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/bin.xml
(original)
+++
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/bin.xml
Thu Mar 22 17:03:31 2007
@@ -1,3 +1,20 @@
+<?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.
+-->
<assembly>
<id>bin</id>
<formats>
@@ -11,7 +28,6 @@
<include>LICENSE*</include>
<include>NOTICE*</include>
<include>pom.xml</include>
- <include>project.xml</include>
</includes>
</fileSet>
<fileSet>
@@ -27,6 +43,9 @@
<includes>
<include>**/*</include>
</includes>
+ <excludes>
+ <exclude>**/assembly/*</exclude>
+ </excludes>
</fileSet>
<fileSet>
<directory>target/site</directory>
@@ -34,9 +53,6 @@
<includes>
<include>**/*</include>
</includes>
- <excludes>
- <exclude>**/*swf</exclude>
- </excludes>
</fileSet>
</fileSets>
<dependencySets>
@@ -46,4 +62,4 @@
<scope>compile</scope>
</dependencySet>
</dependencySets>
-</assembly>
\ No newline at end of file
+</assembly>
Modified:
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/build.xml
URL:
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/build.xml?view=diff&rev=521538&r1=521526&r2=521538
==============================================================================
---
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/build.xml
(original)
+++
incubator/wicket/releases/wicket-1.3.0-incubating-alpha/jdk-1.4/wicket-quickstart/src/assembly/build.xml
Thu Mar 22 17:03:31 2007
@@ -1,4 +1,20 @@
<?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 default="war" name="wicket-quickstart" basedir=".">
<property name="final.name" value="wicket-quickstart" />