Re: site-deploy not copying Java Docs

2006-11-16 Thread Dmystery
, Dmystery, In the build output, what gets processed first, javadoc or site:stage? Thanks, Franz Dmystery wrote: I've a multi-module project for which i'm generating a site. I'm doing a mvn site:stage -DstagingDirectory=somedirectory. This works fine and the modules are linked

Execute phase in weblogic:appc

2006-11-16 Thread Dmystery
I've doubts in weblogic-maven-plugin's appc mojo. The executePhase in the plugin.xml is 'package' which means that it will bounded to the pom along with other goals with 'package' phase. According to the write up at http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html,

RE: Execute phase in weblogic:appc

2006-11-16 Thread Dmystery
into it but if you have suggestions i am more than happy to make changes to the mojo. Scott Ryan Chief Technology Officer Soaring Eagle L.L.C. [EMAIL PROTECTED] www.soaringeagleco.com (303) 263-3044 -Original Message- From: Dmystery [mailto:[EMAIL PROTECTED] Sent: Thursday, November 16

RE: weblogic-maven-plugin:using properties file

2006-11-14 Thread Dmystery
Scott, Can you let me know the correct way to do this? I'm not able to substitute the plugin config values using the properties file. I think this is quite trivial. Dmystery wrote: I did somthing like - profile iddeploy/id activation property namedeploy/name

Re: site-deploy not copying Java Docs

2006-11-14 Thread Dmystery
I dont think it adresses the issue here. I changed it to the lastest plugin though :) dennisl-2 wrote: Dmystery wrote: I've a multi-module project for which i'm generating a site. I'm doing a mvn site:stage -DstagingDirectory=somedirectory. This works fine and the modules are linked

Re: Example POM for WebLogic servicegen needed

2006-11-13 Thread Dmystery
suggestions on how to solve the remaining issues. Thanks, Jeff Dmystery wrote: On a different note, what execution phase are you executing the weblogic:appc? I'm doing it in a pom which first generate sources using XMLbeans, compiles some aspects, create ejb-jar, ejb-client-jar

Re: Not set groupId and version?

2006-11-13 Thread Dmystery
The parent of this pom might be using pluginManagement. To know more http://maven.apache.org/pom.html#Plugin%20Management jiangshachina wrote: Hi guys, I have saw some guides like the following, http://maven.apache.org/guides/mini/guide-assemblies.html plugin

RE: Example POM for Weblogic servicegen needed

2006-11-12 Thread Dmystery
this makes sense. I'd be curious to know if others think by breakdown of maven projects is good pattern or an anti-pattern and if you have any suggestions on how to solve the remaining issues. Thanks, Jeff Dmystery wrote: On a different note, what execution phase are you executing

RE: EJB JAR Manifest

2006-11-10 Thread Dmystery
- From: Dmystery [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 6:13 AM To: users@maven.apache.org Subject: RE: EJB JAR Manifest Sebastein, Is it taking too long to add the classpath entry in the manifest? Since i made the ejb plugin to add the classpath entry

Re: Example POM for WebLogic servicegen needed

2006-11-10 Thread Dmystery
plugin artifactIdmaven-antrun-plugin/artifactId version1.0/version executions execution phasepackage/phase configuration tasks taskdef name=servicegen classname=weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask classpath

Re: Example POM for WebLogic servicegen needed

2006-11-10 Thread Dmystery
, it does the whole thing again, XMLBeans to ejb-client-jar. Just wanna know what phase you have weblogic:appc? Thanks. Dmystery wrote: Hope this helps, plugin artifactIdmaven-antrun-plugin/artifactId version1.0/version executions execution phasepackage/phase

maven-ejb-plugin : take too long

2006-11-09 Thread Dmystery
The maven-ejb-plugin when asked to addclasspath takes abnormal long time to complete. plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-ejb-plugin/artifactId version2.1-SNAPSHOT/version configuration !-- This takes a lot of time -- archive

Re: maven-ejb-plugin : take too long

2006-11-09 Thread Dmystery
invocation. Wayne Fay wrote: Run mvn -X -e ... and perhaps you'll see what's going on differently in the console when you add the addClasspath setting. Wayne On 11/9/06, Dmystery [EMAIL PROTECTED] wrote: The maven-ejb-plugin

Re: Aspectj compilation?

2006-11-09 Thread Dmystery
Not sure about that, but i'm using the 'aspectj-maven-plugin'. plugin groupIdorg.codehaus.mojo/groupId artifactIdaspectj-maven-plugin/artifactId configuration ajdtBuildDefFileajbuild.properties/ajdtBuildDefFile aspectLibraries aspectLibrary

RE: EJB JAR Manifest

2006-11-09 Thread Dmystery
Sebastein, Is it taking too long to add the classpath entry in the manifest? Since i made the ejb plugin to add the classpath entry, it is taking almost 1 min more to complete the ejb goal. Is it working normally for you? Thanks Sebastien Brunot wrote: Thanks for your help Jörg.

RE: weblogic-maven-plugin:using properties file

2006-11-09 Thread Dmystery
Any solutions to this one?? Dmystery wrote: I did somthing like - profile iddeploy/id activation property namedeploy/name valuetrue/value /property /activation build plugins plugin groupIdorg.codehaus.mojo/groupId

weblogic-maven-plugin:using properties file

2006-11-08 Thread Dmystery
How can i use a properties file in weblogic-maven-plugin. I've to deploy an ear on different enviroments and the adminServerHostName,adminServerPort etc will hold values based on the environment. At the pom level i can access the appropriate properties file using profiles, but the same properties

EAR: goal executed twice

2006-11-08 Thread Dmystery
My pom.xml has a packaging of ear and i'm using it to generate an ear, create webservices using antrun plugin, and compile the ear using weblogic:appc. project parent parent pom info--- /parent modelVersion4.0.0/modelVersion artifactIdapp-web/artifactId packagingear/packaging nameApp

RE: weblogic-maven-plugin:using properties file

2006-11-08 Thread Dmystery
-Original Message- From: Dmystery [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 08, 2006 4:35 AM To: users@maven.apache.org Subject: weblogic-maven-plugin:using properties file How can i use a properties file in weblogic-maven-plugin. I've to deploy an ear on different

EAR: build executed twice.

2006-11-07 Thread Dmystery
My pom.xml has a packaging of ear and i'm using it to generate an ear, create webservices using antrun plugin, and compile the ear using weblogic:appc. project parent parent pom info--- /parent modelVersion4.0.0/modelVersion artifactIdapp-web/artifactId packagingear/packaging nameApp

Profile problem

2006-11-05 Thread Dmystery
I've a parent pom say pom.xml and two child poms say pomA.xml and pomB.xml. I'm declaring a profile in both the child pom like, profile iddev/id activation property nameenv/name valuedev/value /property /activation build filters

RE: [M2]weblogic:appc classpath issue

2006-11-03 Thread Dmystery
-Original Message- From: Dmystery [mailto:[EMAIL PROTECTED] Sent: Thursday, November 02, 2006 8:55 PM To: users@maven.apache.org Subject: RE: [M2]weblogic:appc classpath issue I downloaded the code from codehaus SNV and it working fine now. Thanks again! Any plans to include autotypes

Re: Too many jars added to lib?

2006-11-02 Thread Dmystery
Use maven-war-plugin. Due to transitive dependencies in M2, you need to remove them using the warSourceExcludes tag in the plugin as below. build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId version2.0.1/version

Re: Too many jars added to lib?

2006-11-02 Thread Dmystery
This should definitely remove all the unwanted dependencies. Even if they are dependencies of a dependency. I'm doing the same thing to remove all the unwanted files. Can you post your pom.xml? jiangshachina wrote: Hi Dmystery, Thanks for your help. I'm sorry that I cannot success

RE: [M2]weblogic:appc classpath issue

2006-11-02 Thread Dmystery
to place it in your local repository to test. Scott Ryan Chief Technology Officer Soaring Eagle L.L.C. [EMAIL PROTECTED] www.soaringeagleco.com (303) 263-3044 -Original Message- From: Dmystery [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 01, 2006 9:06 PM To: users

Re: Too many jars added to lib?

2006-11-02 Thread Dmystery
http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html I also don't find warSourceExcludes at link http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering-webresources.html Dmystery, you said all is ok in your project. Can you show your case briefly? My pom.xml

Re: Too many jars added to lib?

2006-11-02 Thread Dmystery
in that folder. jiangshachina wrote: Dear Dmystery, The following is new pom.xml with your instructions, project parent groupIdce.demo/groupId artifactIddemo/artifactId version1.0-SNAPSHOT/version /parent modelVersion4.0.0

RE: [M2]weblogic:appc classpath issue

2006-11-01 Thread Dmystery
. In other words, I'm defining another time all the dependencies that already are in the pom. The plugin does not seem to take into account the dependencies. By the way, i'm using version 2.8.0-SNAPSHOT Thxs Manu 2006/10/31, Dmystery [EMAIL PROTECTED]: Alos, looking at AppcMojo.class

RE: [M2]weblogic:appc classpath issue

2006-10-30 Thread Dmystery
L.L.C. [EMAIL PROTECTED] www.soaringeagleco.com (303) 263-3044 -Original Message- From: Dmystery [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 2:39 AM To: users@maven.apache.org Subject: [M2]weblogic:appc classpath issue I'm using weblogic-maven-plugin to compile

RE: [M2]weblogic:appc classpath issue

2006-10-30 Thread Dmystery
) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) Dmystery wrote: I still have issue in compiling the ejb jar file. It simply fails to find all the dependencies

RE: [M2]weblogic:appc classpath issue

2006-10-21 Thread Dmystery
an answer back this evening unless someone else on the list has an answer before that. Scott Ryan Chief Technology Officer Soaring Eagle L.L.C. [EMAIL PROTECTED] www.soaringeagleco.com (303) 263-3044 -Original Message- From: Dmystery [mailto:[EMAIL PROTECTED] Sent: Wednesday, October

[M2]weblogic:appc classpath issue

2006-10-18 Thread Dmystery
I'm using weblogic-maven-plugin to compile my ejb.jar. Here is the plugin definition. plugin groupIdorg.codehaus.mojo/groupId artifactIdweblogic-maven-plugin/artifactId version2.8.0-SNAPSHOT/version configuration

[m2] jspaces

2006-10-17 Thread Dmystery
Where can i find jspaces.jar? I'm not able to find it at http://repo1.maven.org -- View this message in context: http://www.nabble.com/-m2--jspaces-tf2459964.html#a6856501 Sent from the Maven - Users mailing list archive at Nabble.com.

Re: [m2] jspaces

2006-10-17 Thread Dmystery
Gigaspaces... If that's in fact what you're looking for, I can agree that I'm unable to find it in the Maven2 repo myself. Please ask the Gigaspaces guys to make a Maven bundle and upload it via JIRA. Wayne On 10/17/06, Dmystery [EMAIL PROTECTED] wrote: Where can i find jspaces.jar? I'm

Transitive dependencies in war-plugin.

2006-10-16 Thread Dmystery
IS there a way to turn off transitive dependencies while packaging a war file? I want my ejb-client in the war-packaging but it brings along all the ejb-client dependencies. I've searched enough on this forum but cant find a solution. My webapp pom has a dependency as follows..

Re: Transitive dependencies in war-plugin.

2006-10-16 Thread Dmystery
/webXml /configuration /plugin Zarar Dmystery wrote: IS there a way to turn off transitive dependencies while packaging a war file? I want my ejb-client in the war-packaging but it brings along all the ejb-client dependencies. I've searched enough on this forum but cant

Missing Javax jars

2006-10-14 Thread Dmystery
The javax.transaction and javax.security jars are missing in http://repo1.maven.org. I'm using hibernate for compilation and i dont know why it wants these javax jars. I can set up a local hibernate repository but i want maven to download everything from the central. Is there a work around.