mcconnell    2003/08/21 11:26:55

  Modified:    configuration .cvsignore project.properties project.xml
  Added:       configuration maven.xml
               configuration/xdocs download.xml index.xml navigation.xml
  Removed:     configuration BUILDING.txt build.xml
  Log:
  Update to a clean maven build.
  
  Revision  Changes    Path
  1.4       +4 -8      avalon-excalibur/configuration/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/configuration/.cvsignore,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- .cvsignore        13 Jul 2002 18:24:29 -0000      1.3
  +++ .cvsignore        21 Aug 2003 18:26:55 -0000      1.4
  @@ -1,8 +1,4 @@
  -ant.properties
  -build
  -checkstyle.cache
  -distributions
  -dist
  -excalibur-*
  -*.el
  -*.ipr
  +maven.log
  +velocity.log
  +build.properties
  +target
  
  
  
  1.6       +17 -7     avalon-excalibur/configuration/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/configuration/project.properties,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.properties        18 Aug 2003 20:17:01 -0000      1.5
  +++ project.properties        21 Aug 2003 18:26:55 -0000      1.6
  @@ -1,10 +1,20 @@
   
  -# -------------------------------------------------------------------
  -# P R O J E C T  P R O P E R T I E S
  -# -------------------------------------------------------------------
  -maven.repo.remote 
=http://www.apache.org/dist/avalon,http://www.ibiblio.org/maven,http://lsd.student.utwente.nl/repository
  +#
  +# Banner background and foreground colors.
  +#
   
  -maven.junit.fork = yes
  +maven.ui.banner.background = #fff
  +maven.ui.banner.foreground = #000
  +maven.xdoc.jsl = file:/${basedir}/../site.jsl
  +maven.javadoc.stylesheet =${basedir}/../stylesheet.css
  +maven.license.licenseFile =${basedir}/../LICENSE.txt
   
  -# gump integration
  -project.name=excalibur-configuration 
  +#
  +# Declaration of the remote links to assign on javadoc generation.
  +# Link declarations can be overriden in the user's build.properties
  +# file.
  +#
  +
  +sun.j2se.link = http://java.sun.com/j2se/1.4/docs/api/
  +avalon.framework.link = http://avalon.apache.org/framework/api/
  +maven.javadoc.links = ${sun.j2se.link},${avalon.framework.link}
  
  
  
  1.6       +78 -29    avalon-excalibur/configuration/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/configuration/project.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.xml       19 Aug 2003 16:40:20 -0000      1.5
  +++ project.xml       21 Aug 2003 18:26:55 -0000      1.6
  @@ -1,34 +1,83 @@
  -<?xml version="1.0" encoding="UTF-8"?>
  +<?xml version="1.0" encoding="ISO-8859-1"?>
   
   <project>
  -    <extend>${basedir}/../project.xml</extend>
   
  -    <id>excalibur-configuration</id>
  -    <name>Excalibur Configuration</name>
  -    <currentVersion>1.1-dev</currentVersion>
  -    <inceptionYear>2003</inceptionYear>
  -    <description>
  -The Configuration package contains extensions to the Avalon Framework
  -supporting configuration management.
  -    </description>
  -    <shortDescription>Excalibur's Configuration component</shortDescription>
  -
  -    <dependencies>
  -        <dependency>
  -            <id>avalon-framework</id>
  -            <version>4.1.4</version>
  -            <groupId>framework</groupId>
  -        </dependency>
  -        <!-- todo, get one from ibiblio! -->
  -        <dependency>
  -            <id>jing</id>
  -            <version>20020724</version>
  -            <groupId>forrest</groupId>
  -        </dependency>
  -        <dependency>
  -            <id>isorelax</id>
  -            <version>20030108</version>
  -        </dependency>
  -    </dependencies>
  +  <extend>${basedir}/../project.xml</extend>
  +
  +  <id>excalibur-configuration</id>
  +  <name>Excalibur Configuration</name>
  +  <package>org.apache.excalibur.configuration</package>
  +  <currentVersion>1.1-RC1</currentVersion>
  +
  +  <inceptionYear>2002</inceptionYear>
  +  <shortDescription>
  +    Confiuration utilities for Avalon.
  +  </shortDescription>
  +
  +  <siteDirectory>${root.site.directory}/excalibur/configuration</siteDirectory>
  +
  +  <repository>
  +    <connection>scm:cvs:pserver:[EMAIL 
PROTECTED]:/home/cvspublic:avalon-excalibur/configuration</connection>
  +    <url>http://cvs.apache.org/viewcvs/avalon-excalibur/configuration/</url>
  +  </repository>
  +
  +  <dependencies>
  +
  +    <!-- avalon dependecies -->
  +
  +    <dependency>
  +      <groupId>avalon-framework</groupId>
  +      <artifactId>avalon-framework-api</artifactId>
  +      <version>SNAPSHOT</version>
  +    </dependency>
  +    <dependency>
  +      <groupId>avalon-framework</groupId>
  +      <artifactId>avalon-framework-impl</artifactId>
  +      <version>SNAPSHOT</version>
  +    </dependency>
  +
  +    <!-- external dependecies -->
  +
  +    <dependency>
  +      <id>isorelax</id>
  +      <version>20020414</version>
  +    </dependency>
  +    <dependency>
  +      <id>msv</id>
  +      <version>20020414</version>
  +    </dependency>
  +
  +    <!-- unit test dependency for validate taglib -->
  +
  +    <dependency>
  +      <id>xsdlib</id>
  +      <version>20030225</version>
  +    </dependency>
  +    <dependency>
  +      <id>relaxngDatatype</id>
  +      <version>20020414</version>
  +    </dependency>
  +
  +    <!-- pre JDK 1.4 dependencies -->
  +
  +    <dependency>
  +      <id>xml-apis</id>
  +      <version>1.0.b2</version>
  +      <url>http://xml.apache.org/xerces2-j/</url>
  +    </dependency>
  +
  +    <dependency>
  +      <id>xerces</id>
  +      <version>2.2.1</version>
  +      <url>http://xml.apache.org/xerces2-j/</url>
  +    </dependency>
  +
  +  </dependencies>
  +
  +  <reports>
  +    <report>maven-changelog-plugin</report>
  +    <report>maven-file-activity-plugin</report>
  +    <report>maven-developer-activity-plugin</report>
  +  </reports>
   
   </project>
  
  
  
  1.6       +7 -30     avalon-excalibur/configuration/maven.xml
  
  
  
  
  1.1                  avalon-excalibur/configuration/xdocs/download.xml
  
  Index: download.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <document>
  
    <properties>
      <author email="[EMAIL PROTECTED]">Stephen McConnell</author>
      <title>Cornerstone</title>
    </properties>
  
    <body>
      <section name="Download">
        <subsection name="Instructions">
          <p>PLACEHOLDER</p>
        </subsection>
      </section>
    </body>
  
  </document>
  
  
  
  
  
  1.1                  avalon-excalibur/configuration/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <document>
  
      <properties>
          <author email="[EMAIL PROTECTED]">Stephen McConnell</author>
          <title>Excalibur Configuration</title>
      </properties>
  
      <body>
  
          <section name="Excalibur Configuration">
  
              <subsection name="Overview">
  <p>
  The Configuration package contains extensions to the Avalon Framework
  supporting configuration management.
  </p>
              </subsection>
  
              <subsection name="CascadingConfiguration">
  
  <p>
  Provides support for the creation of a base and default parent relationship
  between two configuration instances.  This is helpful when you have a default
  configuration together with a configuration that contains overriding values.
  The level of cascading of configurations is arbitary.  The CascadingConfiguration
  implementation impements the classic Configuration interface and delegates
  invocations to the base configuration.  If the delegate operation fails, the
  implementation will attempt to resolve the invocation against the parent
  configuration.  Both base and parent configuration reference can be classic or
  cascading enabling the creation of complex configuration graphs.
  </p>
              </subsection>
  
              <subsection name="ConfigurationUtil">
  <p>
  Provides a static list operation that is helpful in debugging.  The list
  operation generates a simple string representation of a configuration.
  </p>
              </subsection>
  
              <subsection name="ConfigurationMerger">
  <p>
  Similar to the CascadingConfiguration in that it takes two Configuration's and
  makes one. The ConfigurationMerger can take a "layer" and a "base" and merge
  the layer with the base. The ConfigurationMerger goes a step farther than the
  CascadingConfiguration in that it provides a consistent view of
  Configuration.getChildren() based off of meta-attributes that can exist in the
  layer.
  </p>
              </subsection>
  
              <subsection name="ConfigurationSplitter">
  <p>
  Given a Configuration and a "base", generate the "layer" that when passed to
  the ConfigurationMerger will yield the original Configuration.
  </p>
              </subsection>
  
          </section>
  
      </body>
  
  </document>
  
  
  
  1.1                  avalon-excalibur/configuration/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <project>
  
   <title>Avalon Sandbox</title>
  
   <body>
  
      <links>
        <item name="Home" href="http://avalon.apache.org/"/>
        <item name="Framework" href="http://avalon.apache.org/framework/"/>
        <item name="Components" href="http://avalon.apache.org/components"/>
        <item name="Containers" href="http://avalon.apache.org/containers/"/>
        <item name="Sandbox" href="http://avalon.apache.org/sandbox/"/>
      </links>
  
      <menu name="About Excalibur Configuration">
        <item name="Overview" href="/index.html"/>
        <item name="Download" href="/download.html"/>
        <item name="Javadoc" href="/apidocs/index.html"/>
      </menu>
  
   </body>
  
  </project>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to