Estrutura de diretório de uma aplicação Jboss

1 resposta
jason_bourne

Pessoal,

Alguém pode me passar a estrutura de diretórios para uma aplicação Jboss?? A minha atual é essa:

Mas acho q esta errada. Ou o meu build.xml q esta faltando alguma coisa pois não consigo compilar direito o projeto:

<project name="TesteJboss" default="dist" basedir=".">
    <description>
        simple example build file
    </description>
  <!-- set global properties for this build -->
  <property name="src" location="src"/>
  <property name="build" location="build"/>
  <property name="dist"  location="dist"/>

  <target name="init">
    <!-- Create the time stamp -->
    <tstamp/>
    <!-- Create the build directory structure used by compile -->
    <mkdir dir="${build}"/>
  </target>

  <target name="compile" depends="init"
        description="compile the source " >
    <!-- Compile the java code from ${src} into ${build} -->
    <javac srcdir="${src}" destdir="${build}"/>
  </target>

  <target name="dist" depends="compile"
        description="generate the distribution" >
    <!-- Create the distribution directory -->
    <mkdir dir="${dist}/lib"/>

    <!-- Put everything in ${build} into the TesteJboss-${DSTAMP}.jar file -->
    <jar jarfile="${dist}/lib/TesteJboss-${DSTAMP}.jar" basedir="${build}"/>
  </target>

  <target name="clean"
        description="clean up" >
    <!-- Delete the ${build} and ${dist} directory trees -->
    <delete dir="${build}"/>
    <delete dir="${dist}"/>
  </target>
</project>

1 Resposta

jason_bourne

Pessoal,

Acabei de resolver. Grato.

Criado 17 de outubro de 2007
Ultima resposta 17 de out. de 2007
Respostas 1
Participantes 1