subproject dependency

2009-05-11 Thread tubin gen
I created a maven project which has three sub projects one for ear , one for war and one for jar.War has dependency to jar and ear has dependency to war. When I try to install project i get this error Reason: Failed to copy file for artifact[active project artifact: artifact = gov.audit:audi

Re: subproject dependency

2009-05-14 Thread fachhoch
> > gov.audit > audit.jar > 1 > > > > > please tell me if i specified correctly dependency for my sub project ? > > -- View this message in context: http://www.nabble.com/subproject-dependency-tp23484464p23549

Subproject dependency copy trips up release plugin?

2007-02-12 Thread shinsato
resolve artifact. GroupId: ArtifactId: A Version: 1.0.0.1 Reason: Unable to download the artifact from any repository -- View this message in context: http://www.nabble.com/Subproject-dependency-copy-trips-up-release-plugin--tf3215460s177.html#a8929542 Sent from the Maven - Users mai

How to subproject dependency including test-class?

2008-10-14 Thread sean chen(陈思淼)
I have 3 sub-projects, the structure is like this:MyProject-all -common --client --server the client and server depend on the common project, the src/main/java depend on common is Good. but when I have some base test class in the common-project. when I try to extend it in the c

RE: Subproject dependency copy trips up release plugin?

2007-02-12 Thread Brian E. Fox
y 12, 2007 1:12 PM To: users@maven.apache.org Subject: Subproject dependency copy trips up release plugin? We have a project with a few sub-projects. One of those subprojects uses the maven-dependency-plugin, copying the jar file artifact from one of the sibling sub-projects. The dependency

Re: How to subproject dependency including test-class?

2008-10-14 Thread Wayne Fay
Either move the base test class out of src/test/java and into src/main/java, or use the test-jar approach: http://maven.apache.org/guides/mini/guide-attached-tests.html Wayne On Tue, Oct 14, 2008 at 6:34 PM, sean chen(陈思淼) <[EMAIL PROTECTED]> wrote: > I have 3 sub-projects, the structure is like

Re: How to subproject dependency including test-class?

2008-10-14 Thread sean chen(陈思淼)
OK ,have move the BaseTestCase to the src/main/java 's test package .Thanks Wayne. 2008/10/15 Wayne Fay <[EMAIL PROTECTED]> > Either move the base test class out of src/test/java and into > src/main/java, or use the test-jar approach: > http://maven.apache.org/guides/mini/guide-attached-tests.htm