You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ps...@apache.org on 2005/12/10 22:06:44 UTC

svn commit: r355781 - in /jakarta/commons/proper/math/branches/MATH_1_1: maven.xml project.properties project.xml xdocs/issue-tracking.xml

Author: psteitz
Date: Sat Dec 10 13:06:41 2005
New Revision: 355781

URL: http://svn.apache.org/viewcvs?rev=355781&view=rev
Log:
Maven build and site fixes.
Contributed by Niall Pemberton
Bz #37833

* Added scripting in maven.xml to copy xdocs and release-notes.jsl to source
  distribution so maven build will work for the source distro 
  (if the user makes commons-build available).
* Added custom Issue.xml page including more / clearer info.
* Added urls to dependencies and change to artifactId/groupId instead of id 
  per Bz# 37011. This makes it easier for maven 2 users.

Added:
    jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml   (with props)
Modified:
    jakarta/commons/proper/math/branches/MATH_1_1/maven.xml
    jakarta/commons/proper/math/branches/MATH_1_1/project.properties
    jakarta/commons/proper/math/branches/MATH_1_1/project.xml

Modified: jakarta/commons/proper/math/branches/MATH_1_1/maven.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/math/branches/MATH_1_1/maven.xml?rev=355781&r1=355780&r2=355781&view=diff
==============================================================================
--- jakarta/commons/proper/math/branches/MATH_1_1/maven.xml (original)
+++ jakarta/commons/proper/math/branches/MATH_1_1/maven.xml Sat Dec 10 13:06:41 2005
@@ -51,6 +51,10 @@
       <fileset file='${basedir}/license-header.txt'/>
       <fileset file='${basedir}/NOTICE.txt'/>
       <fileset file='${basedir}/RELEASE-NOTES.txt'/>
+      <fileset file='${basedir}/release-notes.jsl'/>
+    </copy>
+    <copy todir="${maven.dist.src.assembly.dir}/xdocs">
+        <fileset dir="./xdocs"/>
     </copy>
     <delete dir="${maven.dist.src.assembly.dir}/src/experimental" />
     <move todir="${maven.dist.src.assembly.dir}-src">

Modified: jakarta/commons/proper/math/branches/MATH_1_1/project.properties
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/math/branches/MATH_1_1/project.properties?rev=355781&r1=355780&r2=355781&view=diff
==============================================================================
--- jakarta/commons/proper/math/branches/MATH_1_1/project.properties (original)
+++ jakarta/commons/proper/math/branches/MATH_1_1/project.properties Sat Dec 10 13:06:41 2005
@@ -38,7 +38,7 @@
                       http://jakarta.apache.org/commons/collections/api/,\
                       http://jakarta.apache.org/commons/discovery/api/
 
-maven.changes.issue.template=http://issues.apache.org/bugzilla/show_bug.cgi?id=%ISSUE%
+maven.changes.issue.template=%URL%/show_bug.cgi?id=%ISSUE% 
 
 maven.jar.override = on
 maven.jar.clover = 1.3.2

Modified: jakarta/commons/proper/math/branches/MATH_1_1/project.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/math/branches/MATH_1_1/project.xml?rev=355781&r1=355780&r2=355781&view=diff
==============================================================================
--- jakarta/commons/proper/math/branches/MATH_1_1/project.xml (original)
+++ jakarta/commons/proper/math/branches/MATH_1_1/project.xml Sat Dec 10 13:06:41 2005
@@ -20,7 +20,8 @@
 <project>
   <pomVersion>3</pomVersion>
   <name>Math</name>
-  <id>commons-math</id>
+  <groupId>commons-math</groupId>
+  <artifactId>commons-math</artifactId>
   <currentVersion>1.1-RC4</currentVersion>
   <inceptionYear>2003</inceptionYear>
   <shortDescription>Jakarta Commons Math</shortDescription>
@@ -41,7 +42,7 @@
     </license>
   </licenses>
   <gumpRepositoryId>jakarta</gumpRepositoryId>
-  <issueTrackingUrl>http://issues.apache.org/bugzilla/enter_bug.cgi?reporter=&amp;product=Commons&amp;version=unspecified&amp;component=Math&amp;rep_platform=All&amp;op_sys=All&amp;priority=Other&amp;bug_severity=normal&amp;bug_status=NEW&amp;assigned_to=&amp;cc=&amp;bug_file_loc=&amp;short_desc=%5Bpatch%5D+%22Your+subject+heading+here%22&amp;comment=Please+provide+details+here.+Its+best+to+submit+patches+that+alter+existing+file%0D%0Acontent+in+%22unified+cvs+diff%22+format.+%0D%0A%0D%0ASubmissions+that+provide+new+files+can+be+supplied+as+direct+file+attachments+or%0D%0Aarchives+in+zip+or+tar.gz+format.+please+be+kind+enough+to+identify+the+format%0D%0Aof+the+attached+archive+as+bugzill+tends+to+strip+these+characterstics+by%0D%0Aremoving+the+files+extension.&amp;maketemplate=Remember+values+as+bookmarkable+template&amp;form_name=enter_bug</issueTrackingUrl>
+  <issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
   <siteAddress>cvs.apache.org</siteAddress>
   <siteDirectory>/www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</siteDirectory>
   <distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</distributionDirectory>
@@ -170,15 +171,19 @@
     </contributor>
   </contributors>
   <dependencies>
-    <dependency>
-      <id>commons-logging</id>
-      <version>1.0.3</version>
-    </dependency>
-    <dependency>
-      <id>commons-discovery</id>
+     <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+       <version>1.0.3</version>
+       <url>http://jakarta.apache.org/commons/logging</url>
+     </dependency>
+     <dependency>
+      <groupId>commons-discovery</groupId>
+      <artifactId>commons-discovery</artifactId>
       <version>0.2</version>
-    </dependency>
-  </dependencies>
+      <url>http://jakarta.apache.org/commons/discovery</url>
+     </dependency>
+   </dependencies>
   <build>
     <nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
     <sourceDirectory>src/java</sourceDirectory>

Added: jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml?rev=355781&view=auto
==============================================================================
--- jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml (added)
+++ jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml Sat Dec 10 13:06:41 2005
@@ -0,0 +1,61 @@
+<?xml version="1.0"?>
+<!--
+Copyright 2005 The Apache Software Foundation.
+ 
+Licensed 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.
+-->
+<document>
+ <properties>
+  <title>Issue tracking</title>
+  <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
+ </properties>
+<body>
+<!-- ================================================== -->
+<section name="Issue tracking">
+<p>
+  Commons Math uses <a href="http://issues.apache.org/bugzilla/">ASF Bugzilla</a> for tracking issues.
+  To use Bugzilla you may need to <a href="http://issues.apache.org/bugzilla/createaccount.cgi">create an account</a>.
+</p>
+<p>
+  If you would like to report a bug, or raise an enhancement request with
+  Commons Math please do the following:
+  <ol>
+  <li><a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;bug_status=NEEDINFO&amp;product=Commons&amp;component=Math">Search existing open bugs</a>.
+  If you find your issue listed then please add a comment with your details.</li>
+  <li><a href="http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/">Search the mailing list archive</a>.
+  You may find your issue or idea has already been discussed.</li>
+  <li><a href="http://issues.apache.org/bugzilla/enter_bug.cgi?product=Commons&amp;version=unspecified&amp;component=Math&amp;rep_platform=All&amp;op_sys=All&amp;priority=P1&amp;bug_severity=normal&amp;bug_status=NEW&amp;assigned_to=commons-dev%40jakarta.apache.org&amp;short_desc=%5Bmath%5D%20%22Your%20subject%20heading%20here%22&amp;comment=Please%20provide%20details%20here.%20Its%20best%20to%20submit%20patches%20that%20alter%0D%0Aexisting%20file%20content%20in%20%22unified%20cvs%20diff%22%20format.%20%0D%0A%0D%0ASubmissions%20that%20provide%20new%20files%20can%20be%20supplied%20as%20direct%20file%0D%0Aattachments%20or%20archives%20in%20zip%20or%20tar.gz%20format.%20please%20be%20kind%20%0D%0Aenough%20to%20identify%20the%20format%20of%20the%20attached%20archive%20as%20bugzilla%0D%0Atends%20to%20strip%20these%20characterstics%20by%20removing%20the%20files%20extension.&amp;commentprivacy=0&amp;form_name=enter_bug">Submit a bug report or enhancement request</a>.
+  Please prefix all new issues with [math] in the summary line.
+  </li>
+  </ol>
+</p>
+<p>
+  Please also remember these points:
+  <ul>
+  <li>the more information you provide, the better we can help you</li>
+  <li>test cases are vital, particularly for any proposed enhancements</li>
+  <li>the developers of Commons Math are all unpaid volunteers</li>
+  </ul>
+</p>
+<p>
+  You may also find these links useful:
+  <ul>
+  <li><a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;bug_status=NEEDINFO&amp;product=Commons&amp;component=Math">All Open Math bugs</a></li>
+  <li><a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=Commons&amp;component=Math">All Closed Math bugs</a></li>
+  <li><a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;bug_status=NEEDINFO&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;product=Commons&amp;component=Math">All Math bugs</a></li>
+  </ul>
+</p>
+</section>
+<!-- ================================================== -->
+</body>
+</document>

Propchange: jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/math/branches/MATH_1_1/xdocs/issue-tracking.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org