Re: System scope dependency can't find class in rt.jar?

2009-05-07 Thread Baptiste MATHUS
Well, this is a common bad practice to import packages like sun.* or com.sun.*. PMD has even a standard rule to check this pattern. This can particularly be a problem when deploying on other JVM than sun's. But if you really really must have a dependency against this jar, then I would proceed

Access to the class path

2009-05-07 Thread James Crawford
Hi, I need to be able to get access to the runtime class path in my tests when invoked from the maven-surefire-plugin. I can set system properties for the surefire plugin but I can't find anyway that I can get access to the class path. For example I want to do something like the following to

Exclude dependency from scope runtime test classpath

2009-05-07 Thread Henrik
Hi, I was wondering if there is a way to remove a dependency from the test classpath when using scoperuntime/scope I want to make sure that the jar file is only used when running the application and not when testing it. So it really comes down to, I want to have the dependency (jar file) but

RE: Configuring a standalone EJB3 client

2009-05-07 Thread Fabien Kruba
Hi, for the first part of yor question, my guess is that you should try glassfish repository https://maven-repository.dev.java.net/nonav/repository/ There are more standards reference artifacts groupIdjavax.ejb/groupId artifactIdejb-api/artifactId version3.0/version Regards Fabien

Re: Exclude dependency from scope runtime test classpath

2009-05-07 Thread Fabien Kruba
Hi. did you tried provided scope instead? Hi, I was wondering if there is a way to remove a dependency from the test classpath when using scoperuntime/scope I want to make sure that the jar file is only used when running the application and not when testing it. So it really comes down to,

Re: Exclude dependency from scope runtime test classpath

2009-05-07 Thread Baptiste MATHUS
I don't think it is. The only existing scopes are those listed here: http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope I guess you can file an enhancement request for this use, but I'm not sure it would really make sense. Since you're likely to

Re: Exclude dependency from scope runtime test classpath

2009-05-07 Thread Baptiste MATHUS
As explained in the documentation, provided is much like compile, and [...] available on the compilation and test classpath. Cheers. 2009/5/7 Fabien Kruba fabien.kr...@gmail.com Hi. did you tried provided scope instead? Hi, I was wondering if there is a way to remove a dependency from

Maven release plugin with SVN (using locks)

2009-05-07 Thread jm legrand
In our organization, we use SVN with the lock mechanism as the SCM During the release process, we invoke the maven release plugin. The useEditMode property has been enabled in the plugin's configuration. While invoking the prepare goal, we got an error stating [WARNING] Provider svn does not

Re: How to access the plugin class path in ant based mojo

2009-05-07 Thread gbremer
Maybe the following link to another posting showing the same problem makes my problem more clear: http://www.mail-archive.com/d...@maven.apache.org/msg75016.html Maybe some more general question can help. Is there a running example that shows how to invoke a java ant task with a thirdparty main

RE: Exclude dependency from scope runtime test classpath

2009-05-07 Thread Cummings,Steven
Can the tests be in a separate jar? If so they could include the original jar with the code to test but exclude dependencies as needed. Steven -Original Message- From: Henrik [mailto:hen...@team11.org] Sent: Thursday, May 07, 2009 6:04 AM To: users@maven.apache.org Subject: Exclude

Re: Maven inconsistent build with flexbuilder

2009-05-07 Thread Marvin Froeder
Gordon, This is a flex compiler issue, I already notice that too so time ago. If you compile the same MXML several times you will get different results at some point they will repeat... initially I thought was some bug on flexmojos (flex plugin for maven), but then I start to try mxmlc and

Re: Maven inconsistent build with flexbuilder

2009-05-07 Thread Jeff MAURY
Having played with flex-mojos, I remember that the MXML Flex compiler seems to put the current date in the generated SWF and it may be binary encoded so a simple diff will not clearly expose the difference. Regards Jeff MAURY 2009/4/30 Nick Stolwijk nick.stolw...@gmail.com Ah, those swf files

Re: automatically calling install target for projects which are not in the repository

2009-05-07 Thread Blackbird
One solution is simple: create a Maven meta-project: project modelVersion4.0.0/modelVersion groupIdcom.agipi/groupId artifactIdmetaproject-extranet/artifactId packagingpom/packaging version1.0.0/version modules module../project1/module module../project2/module [...]

Re: Issues with archetype:create-from-project

2009-05-07 Thread Raphaël Piéroni
Hi Matt, Sorry for the late reply Yes, please create the jiras Raphaël 2009/4/29 mraible m...@raibledesigns.com I've been using archetype:create-from-project to create archetypes and have noticed some issues: 1. The generated archetype has a version of 1.0-SNAPSHOT. I want the

Re: Exclude dependency from scope runtime test classpath

2009-05-07 Thread Henrik
The jar file in question is a 3:de part jar that we can't and should not change. The application depends on the jar for a certain specific operation, but not for the building and testing of the module itself. Don't ask me why, not my idea :) We use the jar only to Acceptance test the

Site generation download page

2009-05-07 Thread Daniel Maier
Hi, Is it possible to generate a download page, where users can download the artifacts of the project, during the site generation? Thanks Daniel - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional

sources attached twice during release:perform.

2009-05-07 Thread Nord, James
Hi all, I recently updated to use the mave-source-plugin:2.1 with the following config plugin artifactIdmaven-source-plugin/artifactId version2.1/version executions execution idattach-sources/id phaseverify/phase

Re: Maven inconsistent build with flexbuilder

2009-05-07 Thread Gordon Cody
Hi Jeff Its actually much uglier than that in my opinion. In builds done a few seconds apart there are not just a few bytes that show as different but large chunks of the swf. I have even seen it generate files that are different in size (by 1 byte) which really surprised me. Regards, Gord On

Re: sources attached twice during release:perform.

2009-05-07 Thread David Hoffer
Try plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-release-plugin/artifactId version2.0-beta-9/version configuration ... useReleaseProfilefalse/useReleaseProfile

exclude transitive dependency

2009-05-07 Thread tubin gen
My project needs spring-modules-osworklow.jar , this module has dependency to spring-mock , the spring-mock has the same classes as spring-test and this has more classes , so I want to exclude transitive dependency for spring-mock , please tell me how to do this ?

RE: exclude transitive dependency

2009-05-07 Thread Cummings,Steven
Check out http://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html -Original Message- From: tubin gen [mailto:fachh...@gmail.com] Sent: Thursday, May 07, 2009 11:52 AM To: users@maven.apache.org Subject: exclude transitive dependency My

Re: include jars from a folder

2009-05-07 Thread fachhoch
I need it both for compile and runtime please suggest me how i can do this with ant run ? Wendy Smoak-3 wrote: On Wed, May 6, 2009 at 1:00 PM, tubin gen fachh...@gmail.com wrote: I have some of the jar files modified and kept them under folder ext-lib, there jars files are needed  by my

Re: Maven inconsistent build with flexbuilder

2009-05-07 Thread Marvin Froeder
You could decompile it to try I did bought Sothink SWF Decompiler is quite helpful. VELO On Thu, May 7, 2009 at 1:06 PM, Gordon Cody gc...@zafinlabs.com wrote: Hi Jeff Its actually much uglier than that in my opinion. In builds done a few seconds apart there are not just a few

adding jars from project folder into my war file

2009-05-07 Thread tubin gen
I have some jar files inside my project folder , and I want maven to include them inside WEB-INF/lib , I know one way to include is to create a custom ant task but the problem is maven creates a version number inside target ,my project is audit and when I see the target folder I see audit-1 ,

Re: adding jars from project folder into my war file

2009-05-07 Thread Nick Stolwijk
Install[1]/deploy[2] the jar files in your local or company repository and add a dependency. A workaround is to add a dependency with scope system and set a path like this: dependency groupIdtubin.gen/groupId artifactIdyour-jar-name/artifactId version1.0/version

Re: adding jars from project folder into my war file

2009-05-07 Thread Wayne Fay
I have some jar files inside my project folder , and I want maven to include them inside WEB-INF/lib , I know one way to include is to create a Use mvn install:install-file to put the jar files in your local repo cache and/or mvn deploy:deploy:file to put the jar files in your corporate repo

Re: adding jars from project folder into my war file

2009-05-07 Thread fachhoch
1 we do not have a common repository , so every user who wants to work with the project must do the same , and workaround does not include system scope jar into war file , please help with any other workaround Nick Stolwijk-4 wrote: Install[1]/deploy[2] the jar files in your local or

Re: adding jars from project folder into my war file

2009-05-07 Thread fachhoch
but the probelm is we have releases for these other jar files frequently and every time I have to install them isnt there any other way to tell maven to include these jar files into the war file ? Wayne Fay wrote: I have some jar files inside my project folder , and I want maven to

Re: adding jars from project folder into my war file

2009-05-07 Thread Nick Stolwijk
Setting op a company repository is easy and really, it's the only way that will really work. Just get a copy of Nexus, Artifactory or Archiva. Hth, Nick Stolwijk ~Java Developer~ Iprofs BV. Claus Sluterweg 125 2012 WS Haarlem www.iprofs.nl On Thu, May 7, 2009 at 9:40 PM, fachhoch

Re: adding jars from project folder into my war file

2009-05-07 Thread fachhoch
but what if my jar are updated every week , some other team is working on them and whenever we find bugs or for any enhancements they will release new jars , so if I set up my company repository every time a new release should be updated to my repository ny workaround for this ? Nick

Re: adding jars from project folder into my war file

2009-05-07 Thread Nick Stolwijk
That is exactly one of the advantages of a company repo. The other team can just use mvn deploy and each of your developers can retrieve the new dependency. That is one of the keypoints of maven: dependency management. Hth, Nick Stolwijk ~Java Developer~ Iprofs BV. Claus Sluterweg 125 2012 WS

Dependency version precedence

2009-05-07 Thread Ylan Segal
I have a conflict with a jdom dependency: Two versions are appearing in my classpath. The problem arises because my project uses the follwing two dependencies: dependency groupIdjdom/groupId artifactIdjdom/artifactId version1.1/version /dependency dependency

Re: Dependency version precedence

2009-05-07 Thread Niels van Kampenhout
On Thu, May 7, 2009 at 1:10 PM, Ylan Segal ylan.se...@gmail.com wrote: I have a conflict with a jdom dependency: Two versions are appearing in my classpath. The problem arises because my project uses the follwing two dependencies: dependency        groupIdjdom/groupId        

Other problem like cannot resolve symbol, please help...

2009-05-07 Thread Jesfre
Hi everyone... I'm trying to migrate a project with Ant for build tasks to Maven2. � Oracle 9i and Oracle 10g � Java 1.4 � Web Logic 8.1 SP3 � Maven The project depends on some related projects like: +paretProject --+project1 +src --+project2 +src --+project3 +src The first

Re: Dependency version precedence

2009-05-07 Thread Brian Fox
It will resolve the conflicts, but here no conflict exists from Maven's point of view. The groupid is part of the coordinates so they appear to be the same. Jdom should insert a relocation pom to solve these issues. Your recourse is to use an exclusion. Assuming the group was the same, you would

Re: Other problem like cannot resolve symbol, please help...

2009-05-07 Thread Wayne Fay
[INFO] Compilation failure D:\dev\workspace\kronos-migration\ampc\src\main\java\com\posadas\amp\support\MailAlert.java:[17,18] package javax.mail does not exist Add a dependency in your pom.xml file on a jar which provides javax.mail.*. If you aren't sure what dependency to add, use the

Re: Access to the class path

2009-05-07 Thread Brian Fox
take a look at dependency:build-classpath On Thu, May 7, 2009 at 3:11 AM, James Crawford james.crawf...@distra.comwrote: Hi, I need to be able to get access to the runtime class path in my tests when invoked from the maven-surefire-plugin. I can set system properties for the surefire

Re: include jars from a folder

2009-05-07 Thread Wendy Smoak
On Thu, May 7, 2009 at 9:55 AM, fachhoch fachh...@gmail.com wrote: I need it both for compile and runtime please suggest me how i can do this with ant run ? If you need the jars to compile, then they need to be listed as dependencies. The repository and dependency management are big parts of

Re: hi, how to specify java_opts in maven

2009-05-07 Thread Brian Fox
set MAVEN_OPTS = -Xmx512m for example. It can't be done directly from the cli. On Thu, May 7, 2009 at 1:39 AM, shrimpywu imx...@gmail.com wrote: Before i run my program like this plugin groupIdorg.codehaus.mojo/groupId artifactIdexec-maven-plugin/artifactId

Re: Transitive and inherited dependencies - potential bug, or my misunderstanding of the mechanism

2009-05-07 Thread Brian Fox
I think this will help you understand it better: Think of inheritance as including the contents of the parents inside your own pom. (obviously merging occurs). I used to be a C programmer so I refer to this as #include-ing the contents. Therefore the result of inheritance is that it updates your

Re: deploy:deploy Hangs in Release

2009-05-07 Thread Brian Fox
I wonder if it's waiting for some password input. Make sure you have a server setting with the proper credentials for scp. On Tue, May 5, 2009 at 6:33 PM, Harper, Brad brad.har...@fiserv.com wrote: While performing a deployment from the release plugin, I see [INFO] [INFO] [install:install]

Re: Managing Modified Dependencies

2009-05-07 Thread Brian Fox
I covered some strategies in this area here[1] and there are some other how-tos here[2] [1] http://www.sonatype.com/people/2009/01/best-practices-for-releasing-with-3rd-party-snapshot-dependencies/ [2] http://www.sonatype.com/people/2009/04/summary-of-maven-how-tos/ On Mon, May 4, 2009 at 12:10

Maven scm:checkin requires developerConnectionUrl ?

2009-05-07 Thread Nafter
I have to profiles in my pom.xml. The first profile does a scm:update in a workingDirectory using the connectionUrl. This works just fine. Then later during the same build within Hudson, another profile is triggered which is also using the maven scm plugin. Now I would like to commit (checkin) a

Re: adding jars from project folder into my war file

2009-05-07 Thread Fabien KRUBA
No, just reupload the new jars in the repository manager ( updating the version number) and update the versions number in the pom.xml .. Or ask the other team to use the repository manager, seems a better practice to me :) On Thu, May 7, 2009 at 3:57 PM, fachhoch fachh...@gmail.com wrote: but

Re: test data location question

2009-05-07 Thread Pete Siemsen
That seems reasonable, but I still don't understand how to make it work. The program I'm trying to test is like a compiler. It reads source files that can contain include statements. When it parses such a statement, the program needs to open the include file and start parsing statements

Re: test data location question

2009-05-07 Thread Jeff MAURY
Your compiler should be aware of the resource it is working on and not only of the input stream. This is a common case when dealing with embeded resource. Look at XML parsers for example. Regards Jeff MAURY On Fri, May 8, 2009 at 12:39 AM, Pete Siemsen siem...@ucar.edu wrote: That seems

Re: Dependency version precedence

2009-05-07 Thread Ylan Segal
Brian Fox wrote: It will resolve the conflicts, but here no conflict exists from Maven's point of view. The groupid is part of the coordinates so they appear to be the same. Jdom should insert a relocation pom to solve these issues. Your recourse is to use an exclusion. Assuming the group was

Re: Access to the class path

2009-05-07 Thread James Crawford
I did look at dependency:build-classpath but I could only see how it outputs the class path to a file. From the web page: This goal will output a classpath string of dependencies from the local repository to a file or log. Is there anyway to get access to it as a property? I guess I could

Re: Access to the class path

2009-05-07 Thread Manos Batsis
James Crawford wrote: I did look at dependency:build-classpath but I could only see how it outputs the class path to a file. Probably not the best idea as I've been up straight wy too long, but it should take you 15 minutes to change the source so that an env property is stored.

Re: Access to the class path

2009-05-07 Thread Brian Fox
Yeah, someone else was looking for this too. If you supply a patch, i'll integrate it. On Thu, May 7, 2009 at 8:28 PM, Manos Batsis manos_li...@geekologue.comwrote: James Crawford wrote: I did look at dependency:build-classpath but I could only see how it outputs the class path to a file.

Re: Access to the class path

2009-05-07 Thread James Crawford
On Thu, 2009-05-07 at 20:34 -0400, Brian Fox wrote: Yeah, someone else was looking for this too. If you supply a patch, i'll integrate it. We are currently on Maven 2.0.4 so I can't even build the latest source. If I get time I will produce a patch when we finally upgrade to a more recent

Re: Access to the class path

2009-05-07 Thread Brian Fox
No, that would be a bug. On Thu, May 7, 2009 at 9:01 PM, James Crawford james.crawf...@distra.comwrote: On Thu, 2009-05-07 at 20:34 -0400, Brian Fox wrote: Yeah, someone else was looking for this too. If you supply a patch, i'll integrate it. We are currently on Maven 2.0.4 so I can't

Re: include jars from a folder

2009-05-07 Thread Brian Fox
You're shoving a square peg into a round hole by doing this. You won't get much, if any of the benefits of Maven without using a repository. On Wed, May 6, 2009 at 4:00 PM, tubin gen fachh...@gmail.com wrote: I have some of the jar files modified and kept them under folder ext-lib, there jars

Re: hi, how to specify java_opts in maven

2009-05-07 Thread shrimpywu
so what should i do??? BRIAN FOX-5 wrote: set MAVEN_OPTS = -Xmx512m for example. It can't be done directly from the cli. On Thu, May 7, 2009 at 1:39 AM, shrimpywu imx...@gmail.com wrote: Before i run my program like this plugin groupIdorg.codehaus.mojo/groupId