leosimons    2003/06/07 09:43:52

  Added:       configuration maven.xml project.properties project.xml
  Log:
  maven buildfiles
  
  Revision  Changes    Path
  1.1                  avalon-excalibur/configuration/maven.xml
  
  Index: maven.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <project default="java:jar"
      xmlns:j="jelly:core"
      xmlns:ant="jelly:ant">
  
      <!-- include the excalibur-wide custom project properties -->
      <property file="${basedir}/project.properties"/>
      <property file="${basedir}/../project.properties"/>
      <property file="${basedir}/../../project.properties"/>
      <property file="${basedir}/../../../project.properties"/>
      <property file="${basedir}/../../../../project.properties"/>
  
      <!-- include the excalibur-wide custom goal decorators from maven-common.xml -->
      <j:import file="${basedir}/../maven-common.xml" inherit="true"/>
  
      <!-- copy additional test resources -->
      <postGoal name="test:prepare-filesystem">
          <echo>
              copy additional unit test resources
              from ${pom.build.unitTestSourceDirectory}
              to ${maven.test.dest}
          </echo>
          <copy todir="${maven.build.dir}/test-classes">
              <fileset dir="${pom.build.unitTestSourceDirectory}">
                  <exclude name="**/*.java"/>
                  <exclude name="**/package.html"/>
              </fileset>
          </copy>
      </postGoal>
  </project>
  
  
  
  1.1                  avalon-excalibur/configuration/project.properties
  
  Index: project.properties
  ===================================================================
  
  # -------------------------------------------------------------------
  # P R O J E C T  P R O P E R T I E S
  # -------------------------------------------------------------------
  maven.repo.remote = 
http://lsd.student.utwente.nl/repository,http://www.apache.org/dist/avalon,http://www.ibiblio.org/maven
          
  
  
  1.1                  avalon-excalibur/configuration/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <project>
      <extend>${basedir}/../project-common.xml</extend>
  
      <name>Configuration</name>
      <id>excalibur-configuration</id>
      <currentVersion>1.1-dev</currentVersion>
      <inceptionYear>2003</inceptionYear>
      <shortDescription>Excalibur's Configuration component</shortDescription>
      <description>
  The Configuration package contains extensions to the Avalon Framework
  supporting configuration management.
      </description>
  
      <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>
  
  </project>
  
  
  

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

Reply via email to