User: starksm 
  Date: 01/05/21 18:55:51

  Added:       src/build/subprojects build-logging.xml
  Log:
  Tests of log4j based logging
  
  Revision  Changes    Path
  1.1                  jbosstest/src/build/subprojects/build-logging.xml
  
  Index: build-logging.xml
  ===================================================================
  <?xml version="1.0"?>
  <!-- The JBossTest logging testsuite build file -->
  <project name="JBossTest-Logging" default="jar">
      <!-- =================================================================== -->
      <!-- Compiles the source code                                            -->
      <!-- =================================================================== -->
      <target name="compile">
      <mkdir dir="${build.classes.dir}"/>
      <javac srcdir="${src.dir}"
             destdir="${build.classes.dir}"
             classpath="${classpath}"
             debug="on"
             deprecation="on"
             optimize="off"
      >
         <include name="org/jboss/test/logging/**" />
         <include name="org/jboss/test/util/**" />
      </javac>
      </target>
  
      <!-- =================================================================== -->
      <!-- Creates the JBossTest logging ejb-jar file                          -->
      <!-- =================================================================== -->
      <target name="jar" depends="compile">
          <delete dir="${build.classes.dir}/META-INF"/>
          <mkdir dir="${build.classes.dir}/META-INF"/>
          <copy file="${src.resources}/logging/META-INF/ejb-jar.xml"
            todir="${build.classes.dir}/META-INF" />
          <copy file="${src.resources}/logging/META-INF/jboss.xml"
            todir="${build.classes.dir}/META-INF" />
          <jar jarfile="${build.deploy.dir}/logging.jar"
               basedir="${build.classes.dir}" >
               <include name="org/jboss/test/logging/ejb/**" />
               <include name="org/jboss/test/logging/interfaces/**" />
               <include name="**/ejb-jar.xml" />
               <include name="**/jboss.xml" />
          </jar>
      </target>
  </project>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to