You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2004/05/16 06:13:56 UTC

cvs commit: avalon-excalibur/thread/instrumented project.xml

mcconnell    2004/05/15 21:13:56

  Modified:    thread   .cvsignore project.properties
               thread/api project.xml
               thread/impl project.xml
               thread/instrumented project.xml
  Added:       thread   maven.xml project.xml
  Log:
  Add notice file handling and prep for 2.0.0 release.
  
  Revision  Changes    Path
  1.3       +9 -2      avalon-excalibur/thread/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/thread/.cvsignore,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- .cvsignore	26 Apr 2004 09:49:39 -0000	1.2
  +++ .cvsignore	16 May 2004 04:13:56 -0000	1.3
  @@ -1,6 +1,13 @@
  -maven.log
  -velocity.log
   build.properties
  +ant.properties
  +build
  +checkstyle.cache
  +distributions
  +dist
  +excalibur-*
  +*.el
  +*.ipr
  +*.log
   target
   
   *.iml
  
  
  
  1.5       +9 -59     avalon-excalibur/thread/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/thread/project.properties,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.properties	28 Feb 2004 11:47:22 -0000	1.4
  +++ project.properties	16 May 2004 04:13:56 -0000	1.5
  @@ -1,68 +1,18 @@
  -# 
  -# Copyright 2004 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.
  -#
  -#
  -# gump integration
  -project.name = excalibur-thread
   
  +maven.repo.remote = http://www.apache.org/dist/avalon,http://www.dpml.net,http://www.ibiblio.org/maven
   maven.junit.fork = yes
  -#maven.junit.dir = ${maven.build.dir}/test-classes
   
  -maven.repo.remote = http://www.apache.org/dist/avalon,http://www.ibiblio.org/maven
  +avalon.buildsystem=${basedir}/../buildsystem
   
  +#
  +# Banner background and foreground colors.
  +#
   maven.ui.banner.background = #fff
   maven.ui.banner.foreground = #000
  +maven.xdoc.poweredby.image= 
   
  -maven.checkstyle.format = avalon
  -pom.organization.identifier = ASF
  -pom.specificationVersion = 1.0
  -
  +# doc links
   sun.j2se.link = http://java.sun.com/j2se/1.4/docs/api/
  -avalon.framework.link = http://avalon.apache.org/framework/api/
  -avalon.logkit.link = http://avalon.apache.org/logkit/api/
  -excalibur.thread.link = http://avalon.apache.org/excalibur/thread/api/
  -excalibur.event.link = http://avalon.apache.org/excalibur/event/api/
  -
  -maven.javadoc.links = ${sun.j2se.link},${avalon.logkit.link},${avalon.framework.link},${excalibur.thread.link},${excalibur.event.link}
  -
  -maven.javadoc.customtags = dependency service context component todo
  -
  -dependency.name = avalon.dependency
  -dependency.description = Requires component:
  -dependency.enabled = true
  -dependency.scope = methods
  -
  -service.name = avalon.service
  -service.description = Implements service:
  -service.enabled = true
  -service.scope = types
  -
  -context.name = avalon.context
  -context.description = Requires entry:
  -context.enabled = true
  -context.scope = methods
  -
  -component.name = avalon.component
  -component.description = Avalon component
  -component.enabled = true
  -component.scope = types
  -
  -todo.name = todo
  -todo.description = To do:
  -todo.enabled = true
  -todo.scope = all
  -
  +framework.api.link = http://avalon.apache.org/framework/api/
  +maven.javadoc.links = ${sun.j2se.link},${framework.api.link}
   
  
  
  
  1.7       +278 -99   avalon-excalibur/thread/maven.xml
  
  
  
  
  1.9       +22 -81    avalon-excalibur/thread/project.xml
  
  
  
  
  1.5       +2 -2      avalon-excalibur/thread/api/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/thread/api/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml	30 Mar 2004 12:58:11 -0000	1.4
  +++ project.xml	16 May 2004 04:13:56 -0000	1.5
  @@ -23,7 +23,7 @@
     <groupId>excalibur-thread</groupId>
     <id>excalibur-thread-api</id>
     <name>Excalibur Thread API</name>
  -  <currentVersion>2.0</currentVersion>
  +  <currentVersion>2.0.0</currentVersion>
     <package>org.apache.avalon.excalibur.thread</package>
     <inceptionYear>2001</inceptionYear>
     <shortDescription>Excalibur Threads API</shortDescription>
  @@ -32,7 +32,7 @@
       <dependency>
         <groupId>avalon-framework</groupId>
         <artifactId>avalon-framework-api</artifactId>
  -      <version>4.1.5</version>
  +      <version>4.2.0</version>
       </dependency>
     </dependencies>
   
  
  
  
  1.5       +6 -6      avalon-excalibur/thread/impl/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/thread/impl/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml	30 Mar 2004 12:58:11 -0000	1.4
  +++ project.xml	16 May 2004 04:13:56 -0000	1.5
  @@ -23,7 +23,7 @@
     <groupId>excalibur-thread</groupId>
     <id>excalibur-thread-impl</id>
     <name>Excalibur Thread Implementation</name>
  -  <currentVersion>2.0</currentVersion>
  +  <currentVersion>2.0.0</currentVersion>
     <package>org.apache.avalon.excalibur.thread</package>
     <inceptionYear>2001</inceptionYear>
     <shortDescription>Excalibur Threads Implementation</shortDescription>
  @@ -32,27 +32,27 @@
       <dependency>
         <groupId>avalon-framework</groupId>
         <artifactId>avalon-framework-api</artifactId>
  -      <version>4.1.5</version>
  +      <version>4.2.0</version>
       </dependency>
       <dependency>
         <groupId>avalon-framework</groupId>
         <artifactId>avalon-framework-impl</artifactId>
  -      <version>4.1.5</version>
  +      <version>4.2.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-thread</groupId>
         <artifactId>excalibur-thread-api</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-pool</groupId>
         <artifactId>excalibur-pool-api</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-pool</groupId>
         <artifactId>excalibur-pool-impl</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>commons-collections</groupId>
  
  
  
  1.5       +8 -8      avalon-excalibur/thread/instrumented/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/thread/instrumented/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml	30 Mar 2004 13:48:17 -0000	1.4
  +++ project.xml	16 May 2004 04:13:56 -0000	1.5
  @@ -23,7 +23,7 @@
     <groupId>excalibur-thread</groupId>
     <id>excalibur-thread-instrumented</id>
     <name>Excalibur Thread Instrumented Implementation</name>
  -  <currentVersion>2.0</currentVersion>
  +  <currentVersion>2.0.0</currentVersion>
     <package>org.apache.avalon.excalibur.thread</package>
     <inceptionYear>2001</inceptionYear>
     <shortDescription>Excalibur Threads Instrumented Implementation</shortDescription>
  @@ -32,37 +32,37 @@
       <dependency>
         <groupId>avalon-framework</groupId>
         <artifactId>avalon-framework-api</artifactId>
  -      <version>4.1.5</version>
  +      <version>4.2.0</version>
       </dependency>
       <dependency>
         <groupId>avalon-framework</groupId>
         <artifactId>avalon-framework-impl</artifactId>
  -      <version>4.1.5</version>
  +      <version>4.2.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-thread</groupId>
         <artifactId>excalibur-thread-api</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-thread</groupId>
         <artifactId>excalibur-thread-impl</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-pool</groupId>
         <artifactId>excalibur-pool-api</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-pool</groupId>
         <artifactId>excalibur-pool-impl</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>excalibur-pool</groupId>
         <artifactId>excalibur-pool-instrumented</artifactId>
  -      <version>2.0</version>
  +      <version>2.0.0</version>
       </dependency>
       <dependency>
         <groupId>commons-collections</groupId>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org