If I use the xdoclet plugin to generate ejb classes all works fine and
as expected - providing I running one ejb project at a time.
e.g.
mvn clean generate-sources
from the pom.xml for the EJB project(s) all is ok.
BUT if I run from the parent project pom :-
- the reactor correctly finds the order
- runs generate-sources on my 2 ejb projects
but at the end the target\generated-sources\xdoclet directory
for the 1st EJB project contains BOTH ejbs generated sources
The 2nd EJB project is missing the target\generated-sources\xdoclet directory
The -X debug looks fine for both EJB projects.
If I swap the dependencies around then the exact reverse happens.
If I remove one EJB child module from the parent poms <module> list,
all works fine.
Here is what I have in each of the ejb poms
1st EJB pom (the one that ends up with both generated-sources)
<build>
<finalName>ebars_dmz_srv_ExampleService</finalName>
<plugins>
<plugin>
<artifactId>xdoclet-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>xdoclet</goal>
</goals>
<configuration>
<tasks>
<ejbdoclet
destdir="${project.build.directory}/generated-sources/xdoclet">
<fileset dir="${basedir}/src/main/java" includes="**/*Bean.java"/>
<entitycmp destDir="${project.build.outputDirectory}"/>
<!--
<session/> -->
<remoteinterface pattern="{0}Remote"/>
<localinterface pattern="{0}Local"/>
<homeinterface pattern="{0}RemoteHome"/>
<localhomeinterface pattern="{0}LocalHome"/>
<deploymentdescriptor
destDir="${project.build.outputDirectory}/META-INF"/>
<!--
<orion
destdir="${project.build.outputDirectory}/META-INF"/> -->
</ejbdoclet>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</build>
2nd EJB pom (ends up with no generated-sources)
<build>
<finalName>ebars_dmz_bus_ExampleManager</finalName>
<plugins>
<!-- needed to override to add manifest class-path
in ejb jar -->
<plugin>
<artifactId>xdoclet-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>xdoclet</goal>
</goals>
<configuration>
<tasks>
<ejbdoclet
destdir="${project.build.directory}/generated-sources/xdoclet">
<fileset dir="${basedir}/src/main/java" includes="**/*Bean.java"/>
<entitycmp destDir="${project.build.outputDirectory}"/>
<!--
<session/> -->
<remoteinterface pattern="{0}Remote"/>
<localinterface pattern="{0}Local"/>
<homeinterface pattern="{0}RemoteHome"/>
<localhomeinterface pattern="{0}LocalHome"/>
<deploymentdescriptor
destDir="${project.build.outputDirectory}/META-INF"/>
<!--
<orion
destdir="${project.build.outputDirectory}/META-INF"/> -->
</ejbdoclet>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
I have also tried both :-
<version>1.0-alpha-1</version>
<version>1.0-alpha-2</version>
of the plugin.
Finally here's the -X output (the generatedSourcesDirectory seems
correct on each ejb to me? )
. Please Help :-
D:\JavaProjects\EBAR_j2ee\ebars_dmz\ebars_dmz_all_root>mvn -X generate-sources
+ Error stacktraces are turned on.
[DEBUG] Building Maven user-level plugin registry from: 'C:\Documents
and Settings\Pete\.m2\plugin-registry.xml'
[DEBUG] Building Maven global-level plugin registry from:
'D:\java\maven\maven-2.0\conf\plugin-registry.xml'
[INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO] ebars_dmz_all_root project
[INFO] ebars_dmz_cmn_Resources jar
[INFO] ebars_dmz_cmn_model jar
[INFO] ebars_dmz_srv_ExampleService ejb
[INFO] ebars_dmz_pres_WebServices web
[INFO] ebars_dmz_bus_ExampleManager ejb
[INFO] ebars_dmz_pres_ApplicationWeb web
[INFO] ebars_dmz_application_ear EAR
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_all_root project
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-eclipse-plugin: resolved to version 2.0-beta-3-SNAPSHOT
from local repository
[DEBUG] Skipping disabled repository central
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[DEBUG] Retrieving parent-POM from the repository for project:
org.apache.maven.plugins:maven-eclipse-plugin:maven-plugin:2.0-beta-3-SNAPSHOT
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[DEBUG] surefire-report-maven-plugin: resolved to version 2.0-beta-1
from repository central
[INFO] No goals needed for project - skipping
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_cmn_Resources jar
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[INFO] No goals needed for project - skipping
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_cmn_model jar
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[INFO] No goals needed for project - skipping
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_srv_ExampleService ejb
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[DEBUG] Retrieving parent-POM from the repository for project:
null:xdoclet-maven-plugin:maven-plugin:1.0-alpha-2
[DEBUG] ir.ebars_dmz:ebars_dmz_srv_ExampleService:ejb:1.0-SNAPSHOT
(selected for null)
[DEBUG] junit:junit:jar:3.8.1 (selected for test)
[WARNING]
This artifact has been relocated to poi:poi:2.5.1-final-20040804.
[DEBUG] poi:poi:jar:2.5.1-final-20040804 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] logkit:logkit:jar:1.0.1 (selected for compile)
[DEBUG] avalon-framework:avalon-framework:jar:4.1.3 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.6 (removed - nearer found: 1.2.12)
[DEBUG] log4j:log4j:jar:1.2.6 (selected for compile)
[DEBUG] ir.ebars_dmz:ebars_dmz_cmn_model:jar:1.0-SNAPSHOT (selected
for compile)
[DEBUG] ir.ebars_dmz:ebars_dmz_cmn_Resources:jar:1.0-SNAPSHOT
(selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] Skipping disabled repository central
[DEBUG] framework_Common: using locally installed snapshot
[DEBUG] Retrieving parent-POM from the repository for project:
ir.frameworks:framework_Common:jar:1.0-SNAPSHOT
[DEBUG] Skipping disabled repository central
[DEBUG] frameworks_all_root: using locally installed snapshot
[DEBUG] ir.frameworks:framework_Common:jar:1.0-SNAPSHOT (selected
for compile)
[DEBUG] junit:junit:jar:3.8.1 (not setting scope to: compile;
local scope test wins)
[WARNING]
Artifact junit:junit:jar:3.8.1 retains local scope 'test'
overriding broader scope 'compile'
given by a dependency. If this is not intended, modify or
remove the local scope.
[DEBUG] junit:junit:jar:3.8.1 (selected for compile)
[DEBUG] xmlbeans:xbean:jar:2.0.0 (selected for compile)
[DEBUG] javax.j2ee:j2ee:jar:1.3 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] oracle:ojdbc14:jar:1.0 (selected for compile)
[DEBUG] dbunit:dbunit:jar:2.1 (selected for compile)
[DEBUG] xmlbeans:xmlbeans-jsr173-api:jar:2.0-dev (selected for compile)
[DEBUG] ir.middleware:middleware_UTILS:jar:9.0 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] ir.frameworks:framework_Common:jar:1.0-SNAPSHOT (selected for compile)
[DEBUG] junit:junit:jar:3.8.1 (not setting scope to: compile;
local scope test wins)
[DEBUG] junit:junit:jar:3.8.1 (selected for compile)
[DEBUG] xmlbeans:xbean:jar:2.0.0 (selected for compile)
[DEBUG] javax.j2ee:j2ee:jar:1.3 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] oracle:ojdbc14:jar:1.0 (selected for compile)
[DEBUG] dbunit:dbunit:jar:2.1 (selected for compile)
[DEBUG] xmlbeans:xmlbeans-jsr173-api:jar:2.0-dev (selected for compile)
[DEBUG] ir.middleware:middleware_UTILS:jar:9.0 (selected for compile)
[DEBUG] framework_Common: using locally installed snapshot
[DEBUG] Skipping disabled repository central
[DEBUG] ebars_dmz_cmn_Resources: using locally installed snapshot
[DEBUG] Skipping disabled repository central
[DEBUG] ebars_dmz_cmn_model: using locally installed snapshot
[DEBUG] org.codehaus.mojo:xdoclet-maven-plugin:maven-plugin:1.0-alpha-2
(selected for runtime)
[DEBUG] xdoclet:xdoclet-wsee-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] commons-collections:commons-collections:jar:2.1
(selected for runtime)
[DEBUG] xdoclet:xdoclet-jboss-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
org.apache.maven:maven-model:jar:2.0
[DEBUG] org.apache.maven:maven-model:jar:2.0 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected for runtime)
[DEBUG] xdoclet:xdoclet-xdoclet-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-orion-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-ibm-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-jmx-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for runtime)
[DEBUG] logkit:logkit:jar:1.0.1 (selected for runtime)
[DEBUG] avalon-framework:avalon-framework:jar:4.1.3 (selected for runtime)
[DEBUG] log4j:log4j:jar:1.2.6 (selected for runtime)
[DEBUG] commons-collections:commons-collections:jar:2.1 (selected for runtime)
[DEBUG] xdoclet:xdoclet-apache-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-objectweb-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-fr_FR-locale:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
null:maven-antrun-plugin:maven-plugin:1.0
[DEBUG] org.apache.maven.plugins:maven-antrun-plugin:jar:1.0
(selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
null:maven-project:jar:2.0
[DEBUG] org.apache.maven:maven-project:jar:2.0 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8
(selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG] classworlds:classworlds:jar:1.1-alpha-2 (selected for runtime)
[DEBUG] junit:junit:jar:3.8.1 (selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
org.apache.maven:maven-artifact:jar:2.0
[DEBUG] org.apache.maven:maven-artifact:jar:2.0 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG] org.apache.maven:maven-model:jar:2.0 (selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
org.apache.maven:maven-artifact-manager:jar:2.0
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0
(selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG]
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 (selected
for runtime)
[DEBUG] org.apache.maven:maven-artifact:jar:2.0 (selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
org.apache.maven:maven-repository-metadata:jar:2.0
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0
(selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG]
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5 (selected
for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
null:maven-profile:jar:2.0
[DEBUG] org.apache.maven:maven-profile:jar:2.0 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG]
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8 (selected
for runtime)
[DEBUG] org.apache.maven:maven-model:jar:2.0 (selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
org.apache.maven:maven-plugin-api:jar:2.0
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0 (selected for runtime)
[DEBUG] ant:ant-launcher:jar:1.6.5 (selected for runtime)
[DEBUG] ant:ant:jar:1.6.5 (selected for runtime)
[DEBUG] xdoclet:xdoclet-java-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-exolab-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-bea-module:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] xdoclet:xdoclet-ejb-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-mvcsoft-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-sun-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-spring-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] xdoclet:xdoclet-de-locale:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] jboss:jboss-j2ee:jar:3.2.1 (selected for runtime)
[DEBUG] xdoclet:xdoclet-web-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] xdoclet:xdoclet-caucho-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] servletapi:servletapi:jar:2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-jdo-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] xdoclet:xdoclet-tjdo-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-openejb-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-oracle-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] Retrieving parent-POM from the repository for project:
org.apache.maven:maven-plugin-api:jar:2.0-beta-1
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0 (removed - nearer
found: 2.0-beta-1)
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0-beta-1 (selected
for runtime)
[DEBUG] xdoclet:xdoclet-hp-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-webwork-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-mx4j-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-solarmetric-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] commons-collections:commons-collections:jar:2.1 (selected
for runtime)
[DEBUG] xdoclet:xdoclet-jsf-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-pramati-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-pt_BR-locale:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-ejb-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] xdoclet:xdoclet-borland-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-hibernate-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (removed -
nearer found: 1.0.4)
[DEBUG] commons-logging:commons-logging:jar:1.1-dev (selected for runtime)
[DEBUG] org.apache.maven:maven-project:jar:2.0 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8
(selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected for runtime)
[DEBUG] classworlds:classworlds:jar:1.1-alpha-2 (selected for runtime)
[DEBUG] junit:junit:jar:3.8.1 (selected for runtime)
[DEBUG] org.apache.maven:maven-artifact:jar:2.0 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected for runtime)
[DEBUG] org.apache.maven:maven-model:jar:2.0 (selected for runtime)
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0 (selected
for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8
(selected for runtime)
[DEBUG] org.apache.maven:maven-artifact:jar:2.0 (selected for runtime)
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0
(selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5
(selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected
for runtime)
[DEBUG] org.apache.maven:maven-profile:jar:2.0 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-utils:jar:1.0.4 (selected for runtime)
[DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8
(selected for runtime)
[DEBUG] org.apache.maven:maven-model:jar:2.0 (selected for runtime)
[DEBUG] xdoclet:xdoclet-sybase-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-mockobjects-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-libelis-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet-portlet-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xjavadoc:jar:1.1 (selected for runtime)
[DEBUG] ant:ant:jar:1.5.2 (removed - nearer found: 1.6.5)
[DEBUG] ant:ant:jar:1.5.2 (selected for runtime)
[DEBUG] junit:junit:jar:3.8.1 (selected for runtime)
[DEBUG] commons-collections:commons-collections:jar:2.1 (selected
for runtime)
[DEBUG] xdoclet:xdoclet-macromedia-module:jar:1.2.3 (selected for runtime)
[DEBUG] xdoclet:xdoclet:jar:1.2.3 (selected for runtime)
[DEBUG] Configuring mojo
'org.codehaus.mojo:xdoclet-maven-plugin:1.0-alpha-2:xdoclet' -->
[DEBUG] (f) classRealm = [EMAIL PROTECTED]
[DEBUG] (f) generatedSourcesDirectory =
D:\JavaProjects\EBAR_j2ee\ebars_dmz\ebars_dmz_all_root\..\ebars_dmz_srv_ExampleService\target/generated-sou
rces/xdoclet
[DEBUG] (f) project = [EMAIL PROTECTED]
[DEBUG] (f) sourceDirectory =
D:\JavaProjects\EBAR_j2ee\ebars_dmz\ebars_dmz_all_root\..\ebars_dmz_srv_ExampleService/src/main/java
[DEBUG] (f) tasks =
[DEBUG] -- end configuration --
[INFO] [xdoclet:xdoclet {execution: default}]
[INFO] Initializing DocletTasks!!!
[INFO] Executing tasks
[DEBUG] getProperty(ns=null, name=ant.reuse.loader, user=false)
(XDocletMain.start 47 ) Running <entitycmp/>
(XDocletMain.start 47 ) Running <remoteinterface/>
Generating Remote interface for
'ir.ebar.srv.examplesrv.servicefacade.ExampleServiceBean'.
(XDocletMain.start 47 ) Running <localinterface/>
Generating Local interface for
'ir.ebar.srv.examplesrv.servicefacade.ExampleServiceBean'.
(XDocletMain.start 47 ) Running <homeinterface/>
Generating Home interface for
'ir.ebar.srv.examplesrv.servicefacade.ExampleServiceBean'.
(XDocletMain.start 47 ) Running <localhomeinterface/>
Generating Local Home interface for
'ir.ebar.srv.examplesrv.servicefacade.ExampleServiceBean'.
(XDocletMain.start 47 ) Running <deploymentdescriptor/>
Generating EJB deployment descriptor (ejb-jar.xml).
[INFO] Executed tasks
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_pres_WebServices web
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[INFO] No goals needed for project - skipping
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_bus_ExampleManager ejb
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[DEBUG] ir.ebars_dmz:ebars_dmz_bus_ExampleManager:ejb:1.0-SNAPSHOT
(selected for null)
[DEBUG] junit:junit:jar:3.8.1 (selected for test)
[DEBUG] Skipping disabled repository central
[DEBUG] framework_DAO: using locally installed snapshot
[DEBUG] Retrieving parent-POM from the repository for project:
ir.frameworks:framework_DAO:jar:1.0-SNAPSHOT
[DEBUG] frameworks_all_root: using locally installed snapshot
[DEBUG] ir.frameworks:framework_DAO:jar:1.0-SNAPSHOT (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] logkit:logkit:jar:1.0.1 (selected for compile)
[DEBUG] avalon-framework:avalon-framework:jar:4.1.3 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.6 (selected for compile)
[DEBUG] ir.frameworks:framework_Common:jar:1.0-SNAPSHOT (selected
for compile)
[DEBUG] junit:junit:jar:3.8.1 (not setting scope to: compile;
local scope test wins)
[DEBUG] junit:junit:jar:3.8.1 (selected for compile)
[DEBUG] xmlbeans:xbean:jar:2.0.0 (selected for compile)
[DEBUG] javax.j2ee:j2ee:jar:1.3 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (removed - nearer found: 1.2.6)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] oracle:ojdbc14:jar:1.0 (selected for compile)
[DEBUG] dbunit:dbunit:jar:2.1 (selected for compile)
[DEBUG] xmlbeans:xmlbeans-jsr173-api:jar:2.0-dev (selected for compile)
[DEBUG] ir.middleware:middleware_UTILS:jar:9.0 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.6 (removed - nearer found: 1.2.12)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] logkit:logkit:jar:1.0.1 (selected for compile)
[DEBUG] avalon-framework:avalon-framework:jar:4.1.3 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.6 (removed - nearer found: 1.2.12)
[DEBUG] log4j:log4j:jar:1.2.6 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] Skipping disabled repository central
[DEBUG] framework_DomainStore: using locally installed snapshot
[DEBUG] Retrieving parent-POM from the repository for project:
ir.frameworks:framework_DomainStore:jar:1.0-SNAPSHOT
[DEBUG] frameworks_all_root: using locally installed snapshot
[DEBUG] ir.frameworks:framework_DomainStore:jar:1.0-SNAPSHOT
(selected for compile)
[DEBUG] ir.frameworks:framework_DAO:jar:1.0-SNAPSHOT (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] ir.frameworks:framework_Common:jar:1.0-SNAPSHOT (selected
for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] ir.ebars_dmz:ebars_dmz_cmn_model:jar:1.0-SNAPSHOT (selected
for compile)
[DEBUG] ir.ebars_dmz:ebars_dmz_cmn_Resources:jar:1.0-SNAPSHOT
(selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] ir.frameworks:framework_Common:jar:1.0-SNAPSHOT (selected
for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] ir.frameworks:framework_Common:jar:1.0-SNAPSHOT (selected for compile)
[DEBUG] junit:junit:jar:3.8.1 (not setting scope to: compile;
local scope test wins)
[DEBUG] junit:junit:jar:3.8.1 (selected for compile)
[DEBUG] xmlbeans:xbean:jar:2.0.0 (selected for compile)
[DEBUG] javax.j2ee:j2ee:jar:1.3 (selected for compile)
[DEBUG] commons-logging:commons-logging:jar:1.0.4 (selected for compile)
[DEBUG] log4j:log4j:jar:1.2.12 (selected for compile)
[DEBUG] oracle:ojdbc14:jar:1.0 (selected for compile)
[DEBUG] dbunit:dbunit:jar:2.1 (selected for compile)
[DEBUG] xmlbeans:xmlbeans-jsr173-api:jar:2.0-dev (selected for compile)
[DEBUG] ir.middleware:middleware_UTILS:jar:9.0 (selected for compile)
[DEBUG] framework_DomainStore: using locally installed snapshot
[DEBUG] ebars_dmz_cmn_model: using locally installed snapshot
[DEBUG] framework_Common: using locally installed snapshot
[DEBUG] framework_DAO: using locally installed snapshot
[DEBUG] ebars_dmz_cmn_Resources: using locally installed snapshot
[DEBUG] Configuring mojo
'org.codehaus.mojo:xdoclet-maven-plugin:1.0-alpha-2:xdoclet' -->
[DEBUG] (f) classRealm = [EMAIL PROTECTED]
[DEBUG] (f) generatedSourcesDirectory =
D:\JavaProjects\EBAR_j2ee\ebars_dmz\ebars_dmz_all_root\..\ebars_dmz_bus_ExampleManager\target/generated-sou
rces/xdoclet
[DEBUG] (f) project = [EMAIL PROTECTED]
[DEBUG] (f) sourceDirectory =
D:\JavaProjects\EBAR_j2ee\ebars_dmz\ebars_dmz_all_root\..\ebars_dmz_bus_ExampleManager/src/main/java
[DEBUG] (f) tasks =
[DEBUG] -- end configuration --
[INFO] [xdoclet:xdoclet {execution: default}]
[INFO] Initializing DocletTasks!!!
[INFO] Executing tasks
[DEBUG] getProperty(ns=null, name=ant.reuse.loader, user=false)
(XDocletMain.start 47 ) Running <entitycmp/>
(XDocletMain.start 47 ) Running <remoteinterface/>
Generating Remote interface for
'ir.ebar.bus.examplemgr.servicefacade.ExampleManagerBean'.
(XDocletMain.start 47 ) Running <localinterface/>
Generating Local interface for
'ir.ebar.bus.examplemgr.servicefacade.ExampleManagerBean'.
(XDocletMain.start 47 ) Running <homeinterface/>
Generating Home interface for
'ir.ebar.bus.examplemgr.servicefacade.ExampleManagerBean'.
(XDocletMain.start 47 ) Running <localhomeinterface/>
Generating Local Home interface for
'ir.ebar.bus.examplemgr.servicefacade.ExampleManagerBean'.
(XDocletMain.start 47 ) Running <deploymentdescriptor/>
Generating EJB deployment descriptor (ejb-jar.xml).
[INFO] Executed tasks
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_pres_ApplicationWeb web
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[INFO] No goals needed for project - skipping
[INFO]
----------------------------------------------------------------------------
[INFO] Building ebars_dmz_application_ear EAR
[INFO] task-segment: [generate-sources]
[INFO]
----------------------------------------------------------------------------
[DEBUG] maven-ear-plugin: resolved to version 2.0 from repository central
[DEBUG] Retrieving parent-POM from the repository for project:
null:maven-ear-plugin:maven-plugin:2.0
[DEBUG] maven-eclipse-plugin: using locally installed snapshot
[INFO] No goals needed for project - skipping
[INFO]
[INFO]
[INFO]
----------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
----------------------------------------------------------------------------
[INFO] ebars_dmz_all_root project ............................. SUCCESS [0.450s]
[INFO] ebars_dmz_cmn_Resources jar ........................... SUCCESS [0.000s]
[INFO] ebars_dmz_cmn_model jar ............................... SUCCESS [0.010s]
[INFO] ebars_dmz_srv_ExampleService ejb ....................... SUCCESS [6.730s]
[INFO] ebars_dmz_pres_WebServices web ........................ SUCCESS [0.000s]
[INFO] ebars_dmz_bus_ExampleManager ejb ....................... SUCCESS [0.591s]
[INFO] ebars_dmz_pres_ApplicationWeb web ..................... SUCCESS [0.010s]
[INFO] ebars_dmz_application_ear EAR ......................... SUCCESS [0.160s]
[INFO]
----------------------------------------------------------------------------
[INFO]
----------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO]
----------------------------------------------------------------------------
[INFO] Total time: 8 seconds
[INFO] Finished at: Sat Nov 12 15:15:04 GMT 2005
[INFO] Final Memory: 4M/8M
[INFO]
----------------------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]