You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jt...@apache.org on 2007/01/11 04:02:37 UTC

svn commit: r495099 - in /maven/sandbox/plugins/maven-swizzle-plugin/src: main/java/org/apache/maven/plugin/swizzle/ test/java/org/apache/maven/plugin/swizzle/ test/resources/unit/

Author: jtolentino
Date: Wed Jan 10 19:02:34 2007
New Revision: 495099

URL: http://svn.apache.org/viewvc?view=rev&rev=495099
Log:
Added support for new release report template from plexus-swizzle. Will add parameter default values from POM later.

Added:
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ReleaseExpectedResult.txt   (with props)
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/docck-successful.txt   (with props)
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/license-failed.txt   (with props)
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml   (with props)
Modified:
    maven/sandbox/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/MyResolvedIssuesExpectedResult.txt
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ResolvedIssuesExpectedResult.txt
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/VotesExpectedResult.txt
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml
    maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java Wed Jan 10 19:02:34 2007
@@ -96,6 +96,61 @@
      */
     private String result;
 
+    /**
+     * @parameter default-value=false
+     */
+    private boolean releaseInfoNeeded;
+
+    /**
+     * @parameter
+     */
+    private String groupId;
+
+    /**
+     * @parameter
+     */
+    private String artifactId;
+
+    /**
+     * @parameter
+     */
+    private String scmUrl;
+
+    /**
+     * @parameter
+     */
+    private String scmRevisionId;
+
+    /**
+     * @parameter
+     */
+    private String downloadUrl;
+
+    /**
+     * @parameter
+     */
+    private String stagingSiteUrl;
+
+    /**
+     * @parameter
+     */
+    private boolean docckPassed;
+
+    /**
+     * @parameter
+     */
+    private String docckResultDetails;
+
+    /**
+     * @parameter
+     */
+    private boolean licenseCheckPassed;
+
+    /**
+     * @parameter
+     */
+    private String licenseCheckResultDetails;
+
     public void execute()
         throws MojoExecutionException
     {
@@ -114,6 +169,20 @@
             reportConfiguration.setProjectKey( projectKey );
             reportConfiguration.setProjectVersion( projectVersion );
             reportConfiguration.setTemplate( template );
+
+            if ( JiraReport.RELEASE.equals(template) || releaseInfoNeeded  )
+            {
+                reportConfiguration.setGroupId( groupId );
+                reportConfiguration.setArtifactId( artifactId );
+                reportConfiguration.setScmUrl( scmUrl );
+                reportConfiguration.setScmRevisionId( scmRevisionId );
+                reportConfiguration.setDownloadUrl( downloadUrl );
+                reportConfiguration.setStagingSiteUrl( stagingSiteUrl );
+                reportConfiguration.setDocckPassed( docckPassed );
+                reportConfiguration.setDocckResultDetails( docckResultDetails );
+                reportConfiguration.setLicenseCheckPassed( licenseCheckPassed );
+                reportConfiguration.setLicenseCheckResultDetails( licenseCheckResultDetails );
+            }
 
             FileOutputStream out = new FileOutputStream( result );
             PrintStream printStream = new PrintStream( out );

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java Wed Jan 10 19:02:34 2007
@@ -56,6 +56,13 @@
                            getBasedir() + "/target/test-classes/unit/VotesActualResult.txt" );
     }
 
+    public void testReleaseConfiguration()
+        throws Exception
+    {
+        testConfiguration( "release-configuration-test.xml", "ReleaseExpectedResult.txt",
+                           getBasedir() + "/target/test-classes/unit/ReleaseActualResult.txt" );
+    }
+
     public void testCustomTemplateConfiguration()
         throws Exception
     {

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/MyResolvedIssuesExpectedResult.txt
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/MyResolvedIssuesExpectedResult.txt?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/MyResolvedIssuesExpectedResult.txt (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/MyResolvedIssuesExpectedResult.txt Wed Jan 10 19:02:34 2007
@@ -5,48 +5,12 @@
     <title>My Custom Resolved Issues Report</title>
   </properties>
   <body>
-    <section name="Issues Resolved for Swizzle [*]">
-      <ul>
-        <li>[SWIZZLE-1] <![CDATA[Unit Test Summary]]></li>
-      </ul>
+    <section name="Issues Resolved for Swizzle [Test 0.1.1]">
       <ul>
         <li>[SWIZZLE-6] <![CDATA[Fix the toilet]]></li>
       </ul>
       <ul>
-        <li>[SWIZZLE-9] <![CDATA[Clean the pool]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-2] <![CDATA[Need Wilhemina to get some things from the store]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-3] <![CDATA[a loaf of bread]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-4] <![CDATA[a container of milk]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-5] <![CDATA[a stick of butter]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-8] <![CDATA[Get more colored lights for the disco ball]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-10] <![CDATA[Beer fridge for the garage]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-11] <![CDATA[Make sure the smoke alarms work]]></li>
-      </ul>
-      <ul>
         <li>[SWIZZLE-12] <![CDATA[Fix whole in the wall]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-13] <![CDATA[Test issue with attachments]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-14] <![CDATA[votes screwed up]]></li>
-      </ul>
-      <ul>
-        <li>[SWIZZLE-7] <![CDATA[Put a TV in the bathroom]]></li>
       </ul>
     </section>
   </body>

Added: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ReleaseExpectedResult.txt
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ReleaseExpectedResult.txt?view=auto&rev=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ReleaseExpectedResult.txt (added)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ReleaseExpectedResult.txt Wed Jan 10 19:02:34 2007
@@ -0,0 +1,81 @@
+<?xml version="1.0"?>
+<document>
+  <properties>
+    <title>Swizzle Release Report</title>
+  </properties>
+  <body>
+    <section name="Release Report for Swizzle [Test 0.3.0]">
+      <div class="section">
+        <h3><a href="http://jira.codehaus.org/browse/SWIZZLE?report=com.atlassian.jira.plugin.system.project:roadmap-panel">List of Issues Resolved in this Release</a></h3>
+        <table>
+          <tr>
+            <th>VOTES</th>
+            <th>DESCRIPTION</th>
+          </tr>
+          <tr>
+            <td>0</td>
+            <td><a href="http://jira.codehaus.org/browse/SWIZZLE-8">[SWIZZLE-8]</a> <![CDATA[Get more colored lights for the disco ball]]></td>
+          </tr>
+        </table>
+      </div>
+      <div class="section">
+        <h3>Artifact Info</h3>
+        <table>
+          <tr>
+            <th>ITEM</th>
+            <th>DESCRIPTION</th>
+          </tr>
+          <tr>
+            <td><b>GroupId</b></td>
+            <td>org.codehaus.plexus.swizzle</td>
+          </tr>
+          <tr>
+            <td><b>ArtifactId</b></td>
+            <td>swizzle</td>
+          </tr>
+          <tr>
+            <td><b>Version</b></td>
+            <td>Test 0.3.0</td>
+          </tr>
+          <tr>
+            <td><b>Download URL</b></td>
+            <td><a href="http://download-it-here.org/repo/swizzle-1.0.jar">
+            http://download-it-here.org/repo/swizzle-1.0.jar</a></td>
+          </tr>
+          <tr>
+            <td><b>SCM</b></td>
+            <td><a href="http://svn.codehaus.org/swizzle/trunk">svn</a><p>To checkout use the following
+            command: <pre>   svn co -r 107 http://svn.codehaus.org/swizzle/trunk</pre></p></td>
+          </tr>
+          <tr>
+            <td>Last Release</td>
+            <td>Version Test 0.2.0 released on 2006/08/06 12:00:00</td>
+          </tr>
+          <tr>
+            <td><b>Staging Site</b></td>
+            <td><a href="http://people.apache.org/~jtolentino/release-reports">http://people.apache.org/~jtolentino/release-reports</a></td>
+          </tr>
+          <tr>
+            <td><b>Maven Docck Test Results</b></td>
+            <td><img src="images/icon_success_sml.gif" /> <a href="target\test-classes\unit\docck-successful.txt">Successful</a></td>
+          </tr>
+          <tr>
+            <td><b>License Header Results</b></td>
+            <td><img src="images/icon_error_sml.gif" /> Failed!
+              <pre><![CDATA[
+              [INFO] The License Header Verifier Results Will be placed here
+              [INFO] ----------------------------------------------------------------------------
+              [INFO] Failure Details....
+              [INFO] Error 1
+              [INFO] Error 2
+              [INFO] Error 3
+              [INFO] Error 4
+              [INFO] ----------------------------------------------------------------------------
+              ]]></pre>
+            </td>
+          </tr>
+        </table>
+      </div>
+    </section>
+  </body>
+</document>
\ No newline at end of file

Propchange: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ReleaseExpectedResult.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ResolvedIssuesExpectedResult.txt
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ResolvedIssuesExpectedResult.txt?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ResolvedIssuesExpectedResult.txt (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/ResolvedIssuesExpectedResult.txt Wed Jan 10 19:02:34 2007
@@ -4,48 +4,12 @@
     <title>Swizzle Resolved Issues Report</title>
   </properties>
   <body>
-    <section name="Issues Resolved for Swizzle [*]">
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-1">[SWIZZLE-1]</a> <![CDATA[Unit Test Summary]]></li>
-      </ul>
+    <section name="Issues Resolved for Swizzle [Test 0.1.1]">
       <ul>
         <li><a href="http://jira.codehaus.org/browse/SWIZZLE-6">[SWIZZLE-6]</a> <![CDATA[Fix the toilet]]></li>
       </ul>
       <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-9">[SWIZZLE-9]</a> <![CDATA[Clean the pool]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-2">[SWIZZLE-2]</a> <![CDATA[Need Wilhemina to get some things from the store]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-3">[SWIZZLE-3]</a> <![CDATA[a loaf of bread]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-4">[SWIZZLE-4]</a> <![CDATA[a container of milk]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-5">[SWIZZLE-5]</a> <![CDATA[a stick of butter]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-8">[SWIZZLE-8]</a> <![CDATA[Get more colored lights for the disco ball]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-10">[SWIZZLE-10]</a> <![CDATA[Beer fridge for the garage]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-11">[SWIZZLE-11]</a> <![CDATA[Make sure the smoke alarms work]]></li>
-      </ul>
-      <ul>
         <li><a href="http://jira.codehaus.org/browse/SWIZZLE-12">[SWIZZLE-12]</a> <![CDATA[Fix whole in the wall]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-13">[SWIZZLE-13]</a> <![CDATA[Test issue with attachments]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-14">[SWIZZLE-14]</a> <![CDATA[votes screwed up]]></li>
-      </ul>
-      <ul>
-        <li><a href="http://jira.codehaus.org/browse/SWIZZLE-7">[SWIZZLE-7]</a> <![CDATA[Put a TV in the bathroom]]></li>
       </ul>
     </section>
   </body>

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/VotesExpectedResult.txt
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/VotesExpectedResult.txt?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/VotesExpectedResult.txt (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/VotesExpectedResult.txt Wed Jan 10 19:02:34 2007
@@ -15,26 +15,6 @@
           <td>2</td>
           <td><a href="http://jira.codehaus.org/browse/SWIZZLE-10">[SWIZZLE-10]</a> <![CDATA[Beer fridge for the garage]]></td>
         </tr>
-        <tr>
-          <td>0</td>
-          <td><a href="http://jira.codehaus.org/browse/SWIZZLE-9">[SWIZZLE-9]</a> <![CDATA[Clean the pool]]></td>
-        </tr>
-        <tr>
-          <td>0</td>
-          <td><a href="http://jira.codehaus.org/browse/SWIZZLE-11">[SWIZZLE-11]</a> <![CDATA[Make sure the smoke alarms work]]></td>
-        </tr>
-        <tr>
-          <td>0</td>
-          <td><a href="http://jira.codehaus.org/browse/SWIZZLE-8">[SWIZZLE-8]</a> <![CDATA[Get more colored lights for the disco ball]]></td>
-        </tr>
-        <tr>
-          <td>0</td>
-          <td><a href="http://jira.codehaus.org/browse/SWIZZLE-12">[SWIZZLE-12]</a> <![CDATA[Fix whole in the wall]]></td>
-        </tr>
-        <tr>
-          <td>0</td>
-          <td><a href="http://jira.codehaus.org/browse/SWIZZLE-14">[SWIZZLE-14]</a> <![CDATA[votes screwed up]]></td>
-        </tr>
       </table>
     </section>
   </body>

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml Wed Jan 10 19:02:34 2007
@@ -31,7 +31,7 @@
           <password>swizzle</password>
           <jiraServerUrl>http://jira.codehaus.org</jiraServerUrl>
           <projectKey>SWIZZLE</projectKey>
-          <projectVersion>*</projectVersion>
+          <projectVersion>Test 0.1.1</projectVersion>
           <template>unit/MyResolvedIssuesTemplate.vm</template>
           <result>target/test-classes/unit/MyResolvedIssuesActualResult.txt</result>
         </configuration>

Added: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/docck-successful.txt
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/docck-successful.txt?view=auto&rev=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/docck-successful.txt (added)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/docck-successful.txt Wed Jan 10 19:02:34 2007
@@ -0,0 +1,2 @@
+
+No documentation errors were found.
\ No newline at end of file

Propchange: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/docck-successful.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/license-failed.txt
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/license-failed.txt?view=auto&rev=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/license-failed.txt (added)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/license-failed.txt Wed Jan 10 19:02:34 2007
@@ -0,0 +1,8 @@
+              [INFO] The License Header Verifier Results Will be placed here
+              [INFO] ----------------------------------------------------------------------------
+              [INFO] Failure Details....
+              [INFO] Error 1
+              [INFO] Error 2
+              [INFO] Error 3
+              [INFO] Error 4
+              [INFO] ----------------------------------------------------------------------------
\ No newline at end of file

Propchange: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/license-failed.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml?view=auto&rev=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml (added)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml Wed Jan 10 19:02:34 2007
@@ -0,0 +1,51 @@
+<!--
+
+Copyright 2006
+
+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>
+  <name>swizzle-plugin-test</name>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-swizzle-plugin</artifactId>
+        <configuration>
+          <username>swizzletester</username>
+          <password>swizzle</password>
+          <jiraServerUrl>http://jira.codehaus.org</jiraServerUrl>
+          <projectKey>SWIZZLE</projectKey>
+          <projectVersion>Test 0.3.0</projectVersion>
+          <template>RELEASE</template>
+          <result>target/test-classes/unit/ReleaseActualResult.txt</result>
+          <groupId>org.codehaus.plexus.swizzle</groupId>
+          <artifactId>swizzle</artifactId>
+          <scmUrl>http://svn.codehaus.org/swizzle/trunk</scmUrl>
+          <scmRevisionId>107</scmRevisionId>
+          <downloadUrl>http://download-it-here.org/repo/swizzle-1.0.jar</downloadUrl>
+          <stagingSiteUrl>http://people.apache.org/~jtolentino/release-reports</stagingSiteUrl>
+          <docckPassed>true</docckPassed>
+          <docckResultDetails>target/test-classes/unit/docck-successful.txt</docckResultDetails>
+          <licenseCheckPassed>false</licenseCheckPassed>
+          <licenseCheckResultDetails>target/test-classes/unit/license-failed.txt</licenseCheckResultDetails>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml Wed Jan 10 19:02:34 2007
@@ -31,7 +31,7 @@
           <password>swizzle</password>
           <jiraServerUrl>http://jira.codehaus.org</jiraServerUrl>
           <projectKey>SWIZZLE</projectKey>
-          <projectVersion>*</projectVersion>
+          <projectVersion>Test 0.1.1</projectVersion>
           <template>RESOLVED_ISSUES</template>
           <result>target/test-classes/unit/ResolvedIssuesActualResult.txt</result>
         </configuration>

Modified: maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml?view=diff&rev=495099&r1=495098&r2=495099
==============================================================================
--- maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml (original)
+++ maven/sandbox/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml Wed Jan 10 19:02:34 2007
@@ -31,7 +31,7 @@
           <password>swizzle</password>
           <jiraServerUrl>http://jira.codehaus.org</jiraServerUrl>
           <projectKey>SWIZZLE</projectKey>
-          <projectVersion>*</projectVersion>
+          <projectVersion>Test 0.2.0</projectVersion>
           <template>VOTES</template>
           <result>target/test-classes/unit/VotesActualResult.txt</result>
         </configuration>