Revision: 1500
          http://stripes.svn.sourceforge.net/stripes/?rev=1500&view=rev
Author:   bengunter
Date:     2012-05-18 03:31:51 +0000 (Fri, 18 May 2012)
Log Message:
-----------
[maven-release-plugin] prepare release 1.5.7

Modified Paths:
--------------
    branches/1.5.x/examples/pom.xml
    branches/1.5.x/pom.xml
    branches/1.5.x/stripes/pom.xml
    branches/1.5.x/tests/pom.xml

Modified: branches/1.5.x/examples/pom.xml
===================================================================
--- branches/1.5.x/examples/pom.xml     2012-05-18 03:22:28 UTC (rev 1499)
+++ branches/1.5.x/examples/pom.xml     2012-05-18 03:31:51 UTC (rev 1500)
@@ -2,12 +2,12 @@
 <!--
     Stripes Examples Webapp.
 -->
-<project>
+<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>
     <parent>
         <groupId>net.sourceforge.stripes</groupId>
         <artifactId>stripes-parent</artifactId>
-        <version>1.5.7-SNAPSHOT</version>
+        <version>1.5.7</version>
     </parent>
     <artifactId>examples</artifactId>
     <packaging>war</packaging>
@@ -86,7 +86,7 @@
                         <configuration>
                             <target>
                                 <copy todir="./web/WEB-INF/src" flatten="true" 
overwrite="true">
-                                    <fileset dir="./src" includes="**/*.java"/>
+                                    <fileset dir="./src" includes="**/*.java" 
/>
                                 </copy>
                             </target>
                         </configuration>

Modified: branches/1.5.x/pom.xml
===================================================================
--- branches/1.5.x/pom.xml      2012-05-18 03:22:28 UTC (rev 1499)
+++ branches/1.5.x/pom.xml      2012-05-18 03:31:51 UTC (rev 1500)
@@ -4,7 +4,7 @@
     We use multi-module project in order to avoid directory refactorings
     and thereby breaking of the currently used and build.    
 -->
-<project>
+<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>
     <parent>
         <groupId>org.sonatype.oss</groupId>
@@ -13,7 +13,7 @@
     </parent>
     <groupId>net.sourceforge.stripes</groupId>
     <artifactId>stripes-parent</artifactId>
-    <version>1.5.7-SNAPSHOT</version>
+    <version>1.5.7</version>
     <packaging>pom</packaging>
     <name>Stripes Parent</name>
     <url>http://stripesframework.org/</url>
@@ -26,9 +26,9 @@
         </license>
     </licenses>
     <scm>
-        <url>https://svn.sourceforge.net/svnroot/stripes</url>
-        
<connection>scm:svn:https://svn.sourceforge.net/svnroot/stripes</connection>
-        
<developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/stripes</developerConnection>
+        <url>https://svn.sourceforge.net/svnroot/stripes/tags/1.5.7</url>
+        
<connection>scm:svn:https://svn.sourceforge.net/svnroot/stripes/tags/1.5.7</connection>
+        
<developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/stripes/tags/1.5.7</developerConnection>
     </scm>
     <issueManagement>
         <system>JIRA</system>

Modified: branches/1.5.x/stripes/pom.xml
===================================================================
--- branches/1.5.x/stripes/pom.xml      2012-05-18 03:22:28 UTC (rev 1499)
+++ branches/1.5.x/stripes/pom.xml      2012-05-18 03:31:51 UTC (rev 1500)
@@ -3,12 +3,12 @@
     Stripes core. Produces the stripe.jar needed in
     users webapps.
 -->
-<project>
+<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>
     <parent>
         <groupId>net.sourceforge.stripes</groupId>
         <artifactId>stripes-parent</artifactId>
-        <version>1.5.7-SNAPSHOT</version>
+        <version>1.5.7</version>
     </parent>
     <artifactId>stripes</artifactId>
     <packaging>jar</packaging>
@@ -42,17 +42,14 @@
                         <configuration>
                             <target>
                                 <!-- make two copies of the taglib, one with 
and one without dynamic attributes -->
-                                <filter 
filtersfile="./resources/common-descriptions.properties"/>
-                                <filter token="dynattrs" value="false"/>
-                                <copy file="./resources/stripes.tld" 
todir="./target/classes/META-INF" filtering="true"/>
-                                <copy 
file="./resources/stripes-buffered-layout.tld" 
todir="./target/classes/META-INF" filtering="true"/>
+                                <filter 
filtersfile="./resources/common-descriptions.properties" />
+                                <filter token="dynattrs" value="false" />
+                                <copy file="./resources/stripes.tld" 
todir="./target/classes/META-INF" filtering="true" />
+                                <copy 
file="./resources/stripes-buffered-layout.tld" 
todir="./target/classes/META-INF" filtering="true" />
 
-                                <filter token="dynattrs" value="true"/>
-                                <copy file="./resources/stripes.tld"
-                                      
tofile="./target/classes/META-INF/stripes-dynattr.tld" filtering="true"/>
-                                <replace 
file="./target/classes/META-INF/stripes-dynattr.tld"
-                                         
token="http://stripes.sourceforge.net/stripes.tld";
-                                         
value="http://stripes.sourceforge.net/stripes-dynattr.tld"/>
+                                <filter token="dynattrs" value="true" />
+                                <copy file="./resources/stripes.tld" 
tofile="./target/classes/META-INF/stripes-dynattr.tld" filtering="true" />
+                                <replace 
file="./target/classes/META-INF/stripes-dynattr.tld" 
token="http://stripes.sourceforge.net/stripes.tld"; 
value="http://stripes.sourceforge.net/stripes-dynattr.tld"; />
                             </target>
                         </configuration>
                         <goals>
@@ -71,19 +68,14 @@
                         <configuration>
                             <target>
                                 <java fork="true" jar="./lib/build/tlddoc.jar" 
failonerror="false">
-                                    <arg line="-d './target/taglib'"/>
-                                    <arg line="-doctitle 'Stripes 
${project.version} Tag Library Documentation'"/>
-                                    <arg line="-windowtitle 'Stripes 
${project.version} Tag Library Documentation'"/>
-                                    <arg 
value="./target/classes/META-INF/stripes.tld"/>
+                                    <arg line="-d './target/taglib'" />
+                                    <arg line="-doctitle 'Stripes 
${project.version} Tag Library Documentation'" />
+                                    <arg line="-windowtitle 'Stripes 
${project.version} Tag Library Documentation'" />
+                                    <arg 
value="./target/classes/META-INF/stripes.tld" />
                                 </java>
-                                <copy file="./src/javadoc.css"
-                                      tofile="./target/taglib/stylesheet.css"
-                                      overwrite="true"/>
-                                <replace file="./target/taglib/index.html"
-                                         token="overview-summary.html"
-                                         value="stripes/tld-summary.html"/>
-                                <jar 
destfile="./target/stripes-${project.version}-tlddoc.jar"
-                                     basedir="./target/taglib"/>
+                                <copy file="./src/javadoc.css" 
tofile="./target/taglib/stylesheet.css" overwrite="true" />
+                                <replace file="./target/taglib/index.html" 
token="overview-summary.html" value="stripes/tld-summary.html" />
+                                <jar 
destfile="./target/stripes-${project.version}-tlddoc.jar" 
basedir="./target/taglib" />
                             </target>
                         </configuration>
                         <goals>
@@ -138,7 +130,7 @@
                         <configuration>
                             
<stylesheetfile>${basedir}/src/javadoc.css</stylesheetfile>
                             <overview>${basedir}/src/overview.html</overview>
-                            <bottom>&#169; Copyright 2005-2006, Stripes 
Development Team.</bottom>
+                            <bottom>© Copyright 2005-2006, Stripes Development 
Team.</bottom>
                             <author>true</author>
                             <protected>true</protected>
                             <use>true</use>

Modified: branches/1.5.x/tests/pom.xml
===================================================================
--- branches/1.5.x/tests/pom.xml        2012-05-18 03:22:28 UTC (rev 1499)
+++ branches/1.5.x/tests/pom.xml        2012-05-18 03:31:51 UTC (rev 1500)
@@ -5,12 +5,12 @@
     Eventually tests should be in the same module than stripes
     core itself, using maven standard layout.
 -->
-<project>
+<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>
     <parent>
         <groupId>net.sourceforge.stripes</groupId>
         <artifactId>stripes-parent</artifactId>
-        <version>1.5.7-SNAPSHOT</version>
+        <version>1.5.7</version>
     </parent>
     <artifactId>tests</artifactId>
     <packaging>jar</packaging>

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to