You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ro...@apache.org on 2004/08/18 02:44:47 UTC

cvs commit: jakarta-commons/cli/src/conf MANIFEST.MF

roxspring    2004/08/17 17:44:47

  Modified:    cli      project.xml project.properties
               cli/src/conf MANIFEST.MF
  Log:
  Build system changes in preparation for 2.0B1 release
  
  Revision  Changes    Path
  1.22      +38 -9     jakarta-commons/cli/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/cli/project.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- project.xml	22 Apr 2004 23:00:15 -0000	1.21
  +++ project.xml	18 Aug 2004 00:44:46 -0000	1.22
  @@ -15,17 +15,20 @@
      limitations under the License.
   -->
   <project>
  -  <extend>../commons-build/project.xml</extend>
     <id>commons-cli</id>
     <name>CLI</name>
     <currentVersion>2.0</currentVersion>
     <inceptionYear>2002</inceptionYear>
     <shortDescription>Commons CLI</shortDescription>
     <description>
  -  	Commons CLI provides a simple API for working with the command line arguments and options.
  +  	Commons CLI provides a simple API for presenting, proecessing and 
  +  	validating a command line interface.
     </description>
     <logo>/images/logo.png</logo>
  -
  +  
  +  <url>http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</url>
  +  <package>org.apache.commons.${pom.artifactId.substring(8)}</package>
  +  
     <organization>
       <name>Apache Software Foundation</name>
       <url>http://www.apache.org</url>
  @@ -33,8 +36,31 @@
     </organization>
   
     <gumpRepositoryId>jakarta</gumpRepositoryId>
  -  
  -  
  +  <issueTrackingUrl>http://issues.apache.org/bugzilla/</issueTrackingUrl>
  +  <siteAddress>jakarta.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>
  +  
  +  <repository>
  +    <connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/${pom.artifactId.substring(8)}</connection>
  +    <url>http://cvs.apache.org/viewcvs/jakarta-commons/${pom.artifactId.substring(8)}/</url>
  +  </repository>
  +  
  +  <mailingLists>
  +    <mailingList>
  +      <name>Commons Dev List</name>
  +      <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
  +      <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
  +      <archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive>
  +    </mailingList>
  +    <mailingList>
  +      <name>Commons User List</name>
  +      <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
  +      <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
  +      <archive>http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive>
  +    </mailingList>
  +  </mailingLists>
  +
     <developers>
       <developer>
         <name>James Strachan</name>
  @@ -43,7 +69,7 @@
         <organization>SpiritSoft, Inc.</organization>
       </developer>
       <developer>
  -      <name>bob mcwhirter</name>
  +      <name>Bob McWhirter</name>
         <id>bob</id>
         <email>bob@werken.com</email>
         <organization>Werken</organization>
  @@ -106,6 +132,8 @@
       <nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
       <sourceDirectory>src/java</sourceDirectory>
       <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
  +    <integrationUnitTestSourceDirectory/>
  +    <aspectSourceDirectory/>
       <resources>
           <resource>
             <directory>src/java/org/apache/commons/cli2</directory>
  @@ -142,6 +170,7 @@
       <report>maven-simian-plugin</report>
       <report>maven-faq-plugin</report>
       <report>maven-jcoverage-plugin</report>
  -    <report>maven-tasks-plugin</report>
  -    <report>maven-findbugs-plugin</report>
  -  </reports></project>
  +    <!--report>maven-tasks-plugin</report-->
  +    <!--report>maven-findbugs-plugin</report-->
  +  </reports>
  +</project>
  
  
  
  1.10      +7 -3      jakarta-commons/cli/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/cli/project.properties,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.properties	22 Apr 2004 23:00:15 -0000	1.9
  +++ project.properties	18 Aug 2004 00:44:46 -0000	1.10
  @@ -7,9 +7,10 @@
   compile.deprecation = off
   
   maven.jarResources.basedir=${basedir}/src/java
  - 
  -# use turbine coding standards
  -maven.checkstyle.format = sun
  +
  +# Reset the checkstyle properties to use the default sun settings
  +maven.checkstyle.properties=
  +maven.checkstyle.format=sun
   
   maven.xdoc.jsl=../commons-build/commons-site.jsl
   maven.xdoc.date=left
  @@ -18,3 +19,6 @@
   maven.xdoc.poweredby.image=maven-feather.png
   
   maven.javadoc.links=http://java.sun.com/j2se/1.4/docs/api/
  +
  +
  +maven.jar.manifest=${basedir}/src/conf/MANIFEST.MF
  \ No newline at end of file
  
  
  
  1.3       +8 -5      jakarta-commons/cli/src/conf/MANIFEST.MF
  
  Index: MANIFEST.MF
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/cli/src/conf/MANIFEST.MF,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MANIFEST.MF	22 Apr 2004 23:00:16 -0000	1.2
  +++ MANIFEST.MF	18 Aug 2004 00:44:47 -0000	1.3
  @@ -1,12 +1,15 @@
  -Extension-Name: org.apache.commons.cli
  +Name: org/apache/commons/cli
  +Specification-Title: Jakarta Commons CLI
   Specification-Vendor: Apache Software Foundation
   Specification-Version: 1.0
  +Implementation-Title: org.apache.commons.cli
   Implementation-Vendor: Apache Software Foundation
  -Implementation-Version: 1.0-dev
  +Implementation-Version: 2.0
   
  -Extension-Name: org.apache.commons.cli2
  +Name: org/apache/commons/cli2
  +Specification-Title: Jakarta Commons CLI2
   Specification-Vendor: Apache Software Foundation
   Specification-Version: 2.0
  +Implementation-Title: org.apache.commons.cli2
   Implementation-Vendor: Apache Software Foundation
  -Implementation-Version: 2.0-dev
  -
  +Implementation-Version: 2.0
  \ No newline at end of file
  
  
  

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