Author: dashorst
Date: Sun Dec 24 10:43:57 2006
New Revision: 490056

URL: http://svn.apache.org/viewvc?view=rev&rev=490056
Log:
Created release 1.2.4

Added:
    incubator/wicket/releases/wicket-1.2.4/changeversion.sh   (with props)
    incubator/wicket/releases/wicket-1.2.4/release.sh   (with props)
Modified:
    incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles-examples/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-examples/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-extensions/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-jmx/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-parent/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-portlet-examples/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-quickstart/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot-examples/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr-examples/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-spring-examples/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-spring/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket-threadtest/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket/pom.xml
    incubator/wicket/releases/wicket-1.2.4/wicket/src/site/xdoc/index.xml

Added: incubator/wicket/releases/wicket-1.2.4/changeversion.sh
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/changeversion.sh?view=auto&rev=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/changeversion.sh (added)
+++ incubator/wicket/releases/wicket-1.2.4/changeversion.sh Sun Dec 24 10:43:57 
2006
@@ -0,0 +1,4 @@
+#/bin/sh
+for i in `ls */pom.xml`; do
+       sed -i -e "s/1.2-SNAPSHOT/1.2.4/g" $i
+done
\ No newline at end of file

Propchange: incubator/wicket/releases/wicket-1.2.4/changeversion.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/wicket/releases/wicket-1.2.4/release.sh
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/release.sh?view=auto&rev=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/release.sh (added)
+++ incubator/wicket/releases/wicket-1.2.4/release.sh Sun Dec 24 10:43:57 2006
@@ -0,0 +1,24 @@
+#/bin/sh
+rm -rf release
+mkdir release
+for i in wicket wicket-extensions wicket-examples wicket-spring 
wicket-spring-examples wicket-portlet-examples wicket-quickstart; do
+       cd $i
+       mvn4 clean
+       mvn4 package
+       mvn4 site 
+       mvn4 assembly:assembly
+       cp target/distributions/*zip ../release
+       cp target/distributions/*gz ../release
+       cd ..
+done
+
+for i in wicket-auth-roles wicket-auth-roles-examples wicket-jmx 
wicket-spring-annot wicket-spring-annot-examples; do
+       cd $i
+       mvn clean
+       mvn package
+       mvn site 
+       mvn assembly:assembly
+       cp target/distributions/*zip ../release
+       cp target/distributions/*gz ../release
+       cd ..
+done

Propchange: incubator/wicket/releases/wicket-1.2.4/release.sh
------------------------------------------------------------------------------
    svn:executable = *

Modified: 
incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles-examples/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles-examples/pom.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles-examples/pom.xml 
Sun Dec 24 10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
        </parent>
 
        <artifactId>wicket-auth-roles-examples</artifactId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-auth-roles/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
        </parent>
 
        <artifactId>wicket-auth-roles</artifactId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-examples/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-examples/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-examples/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
                <relativePath>../wicket-parent</relativePath>
        </parent>
 
@@ -36,7 +36,7 @@
                <!-- dependency>
                        <groupId>wicket</groupId>
                        <artifactId>wicket-jmx</artifactId>
-                       <version>1.2-SNAPSHOT</version>
+                       <version>1.2.4</version>
                </dependency-->
                <dependency>
                        <groupId>dom4j</groupId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-extensions/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-extensions/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-extensions/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
                <relativePath>../wicket-parent</relativePath>
        </parent>
        <artifactId>wicket-extensions</artifactId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-jmx/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-jmx/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-jmx/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-jmx/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
                <relativePath>../wicket-parent</relativePath>
        </parent>
        <artifactId>wicket-jmx</artifactId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-parent/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-parent/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-parent/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-parent/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <groupId>wicket</groupId>
        <artifactId>wicket-parent</artifactId>
        <packaging>pom</packaging>
-       <version>1.2-SNAPSHOT</version>
+       <version>1.2.4</version>
        <name>Wicket Parent</name>
        <description>Wicket is a Java open source, component based web 
application framework.</description>
        <url>http://wicketframework.org/${project.artifactId}</url>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-portlet-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-portlet-examples/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-portlet-examples/pom.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-portlet-examples/pom.xml Sun 
Dec 24 10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
        </parent>
 
        <artifactId>wicket-portlet-examples</artifactId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-quickstart/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-quickstart/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-quickstart/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-quickstart/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
        </parent>
 
        <artifactId>wicket-quickstart</artifactId>

Modified: 
incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot-examples/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot-examples/pom.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot-examples/pom.xml 
Sun Dec 24 10:43:57 2006
@@ -4,7 +4,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
        </parent>
 
        <artifactId>wicket-spring-annot-examples</artifactId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot/pom.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-spring-annot/pom.xml Sun Dec 
24 10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
                <relativePath>../wicket-parent</relativePath>
        </parent>
 
@@ -21,7 +21,7 @@
                <dependency>
                        <groupId>wicket</groupId>
                        <artifactId>wicket-spring</artifactId>
-                       <version>1.2-SNAPSHOT</version>
+                       <version>1.2.4</version>
                </dependency>
        </dependencies>
 

Modified: 
incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr-examples/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr-examples/pom.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr-examples/pom.xml 
Sun Dec 24 10:43:57 2006
@@ -6,7 +6,7 @@
        <groupId>wicket</groupId>
        <artifactId>wicket-spring-cattr-examples</artifactId>
        <packaging>jar</packaging>
-       <version>1.2-SNAPSHOT</version>
+       <version>1.2.4</version>
        <name>Examples of Wicket Spring Integration through Commons 
Attributes</name>
        <description>Examples of Spring integration in your Wicket web 
applications using commons attributes.</description>
        <organization>
@@ -77,13 +77,13 @@
                <dependency>
                        <groupId>wicket</groupId>
                        <artifactId>wicket-extensions</artifactId>
-                       <version>1.2-SNAPSHOT</version>
+                       <version>1.2.4</version>
                </dependency>
 
                <dependency>
                        <groupId>wicket</groupId>
                        <artifactId>wicket-spring-cattr</artifactId>
-                       <version>1.2-SNAPSHOT</version>
+                       <version>1.2.4</version>
                </dependency>
 
                <dependency>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr/pom.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-spring-cattr/pom.xml Sun Dec 
24 10:43:57 2006
@@ -6,7 +6,7 @@
        <groupId>wicket</groupId>
        <artifactId>wicket-spring-cattr</artifactId>
        <packaging>jar</packaging>
-       <version>1.2-SNAPSHOT</version>
+       <version>1.2.4</version>
        <name>Wicket Spring Integration through Commons Attributes</name>
        <description>Spring integration in your Wicket web applications using 
commons attributes. See the examples project for usecases.</description>
        <organization>
@@ -82,7 +82,7 @@
                <dependency>
                        <groupId>wicket</groupId>
                        <artifactId>wicket-spring</artifactId>
-                       <version>1.2-SNAPSHOT</version>
+                       <version>1.2.4</version>
                </dependency>
                <dependency>
                        <groupId>commons-attributes</groupId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-spring-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-spring-examples/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-spring-examples/pom.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-spring-examples/pom.xml Sun 
Dec 24 10:43:57 2006
@@ -5,7 +5,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
        </parent>
 
     <artifactId>wicket-spring-examples</artifactId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-spring/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-spring/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-spring/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-spring/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
                <relativePath>../wicket-parent</relativePath>
        </parent>
 
@@ -22,7 +22,7 @@
                <dependency>
                        <groupId>wicket</groupId>
                        <artifactId>wicket</artifactId>
-                       <version>1.2-SNAPSHOT</version>
+                       <version>1.2.4</version>
                </dependency>
                <dependency>
                        <groupId>org.springframework</groupId>

Modified: incubator/wicket/releases/wicket-1.2.4/wicket-threadtest/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket-threadtest/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket-threadtest/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket-threadtest/pom.xml Sun Dec 24 
10:43:57 2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
                <relativePath>../wicket-parent</relativePath>
        </parent>
 

Modified: incubator/wicket/releases/wicket-1.2.4/wicket/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket/pom.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket/pom.xml (original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket/pom.xml Sun Dec 24 10:43:57 
2006
@@ -6,7 +6,7 @@
        <parent>
                <groupId>wicket</groupId>
                <artifactId>wicket-parent</artifactId>
-               <version>1.2-SNAPSHOT</version>
+               <version>1.2.4</version>
                <relativePath>../wicket-parent</relativePath>
        </parent>
 

Modified: incubator/wicket/releases/wicket-1.2.4/wicket/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.4/wicket/src/site/xdoc/index.xml?view=diff&rev=490056&r1=490055&r2=490056
==============================================================================
--- incubator/wicket/releases/wicket-1.2.4/wicket/src/site/xdoc/index.xml 
(original)
+++ incubator/wicket/releases/wicket-1.2.4/wicket/src/site/xdoc/index.xml Sun 
Dec 24 10:43:57 2006
@@ -59,11 +59,16 @@
                        </p>
                </section>
                <section name="Latest News">
-                       <subsection name="December 24th, 2006 - Santa bring 
Wicket 1.2.4">
+                       <subsection name="December 24th, 2006 - Best wishes 
2007">
                                <p>
-                                       As a thank you for your support in 
2006, Santa has put Wicket 1.2.4 under the tree! Happy holidays and best wishes 
for 2007!
+                                       As a thank you for your support in 
2006, Santa has put Wicket 1.2.4 under the tree!<br />
                                </p>
                                <p>
+                                       Happy holidays and best wishes for 
2007! <i>- the Wicket team</i>
+                               </p>
+                       </subsection>
+                       <subsection name="December 24th, 2006 - Wicket 1.2.4 
released">
+                               <p>
                                        Wicket is a Java web application 
framework that takes simplicity, separation of concerns and ease of development 
to a whole new level. Wicket pages can be mocked up, previewed and later 
revised using standard WYSIWYG HTML design tools. Dynamic content processing 
and form handling is all handled in Java code using a first-class component 
model backed by POJO data beans that can easily be persisted using your 
favorite technology.
                                </p>
                                <ul>
@@ -72,7 +77,7 @@
                                <p>
                                        Although Wicket has recently entered 
the ASF Incubator, this interim release is provided outside of the ASF, solely 
as a service to existing Wicket users to resolve existing bugs in the Wicket 
product. As such, this release of the Wicket project is not endorsed or 
approved by the Apache Software Foundation. The Apache Software Foundation is 
in no way affiliated with this release.
                                </p>
-                               <h2>Fixed bugs</h2>
+                               <p>Fixed bugs in Wicket 1.2.4</p>
                                <ul>
                                        <li>[<a 
href='http://issues.apache.org/jira/browse/WICKET-29'>WICKET-29</a>] - 
javascript error in wicket-ajax.js: Wicket.Log.Error is not a function</li>
                                        <li>[<a 
href='http://issues.apache.org/jira/browse/WICKET-31'>WICKET-31</a>] - Wrong 
source paths in build.xml</li>


Reply via email to