maven dependency issue (sqljdbc4.jar not picked up during junit test)

2014-09-30 Thread ghostwolf59
built using ... * jdk1.6.0_33 * apache-maven-3.0.4 * Junit 4.11 * spring 3.0.4.RELEASE * hibernate 3.5.6-Final - good @ being sucked @ -- View this message in context: http://maven.40175.n5.nabble.com/maven-dependency-issue-sqljdbc4-jar-not-picked-up-during-junit-test-tp5807497.html Sent f

Re: Java SSL dependency issue

2014-08-18 Thread james northrup
rity >> >> what provider are you using? >> I recommend BouncyCastle >> https://www.bouncycastle.org/latest_releases.html >> >> Sounds like an interesting app..would like to hear more when you get a >> chance >> >> Martin Gainty >>

Re: Java SSL dependency issue

2014-08-18 Thread james northrup
an interesting app..would like to hear more when you get a > chance > > Martin Gainty > ___ > > > > From: joshualbai...@gmail.com > > Subject: Java SSL dependency issue > > Date: Thu, 7 Aug 2014 13:02:00 -0500 > > To: users@maven.apac

RE: Java SSL dependency issue

2014-08-18 Thread Martin Gainty
like to hear more when you get a chance Martin Gainty ___ > From: joshualbai...@gmail.com > Subject: Java SSL dependency issue > Date: Thu, 7 Aug 2014 13:02:00 -0500 > To: users@maven.apache.org > > I have two branches of code. One compiles without

Re: Java SSL dependency issue

2014-08-07 Thread Barrie Treloar
On 8 August 2014 03:32, Joshua Bailey wrote: > I have two branches of code. One compiles without a hitch, the other > complains about this: > > Failed to execute goal > org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile > (default-compile) on project thebookgrove-catalog: Compilation fa

Java SSL dependency issue

2014-08-07 Thread Joshua Bailey
I have two branches of code. One compiles without a hitch, the other complains about this: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project thebookgrove-catalog: Compilation failure: Compilation failure: [ERROR] /Users/joshua/Desk

Re: [m2] yet another cyclic dependency issue

2009-10-01 Thread Adrian Herscu
Thanks. Stephen Connolly wrote: create a generator-test module for testing the generator 2009/10/1 Adrian Herscu Hi all, (I already read all post regarding cyclic dependencies) My project has two modules: 1) generator -- depends on the "samples" for testing 2) sample -- depends on the "ge

Re: [m2] yet another cyclic dependency issue

2009-10-01 Thread Stephen Connolly
create a generator-test module for testing the generator 2009/10/1 Adrian Herscu > Hi all, > > > (I already read all post regarding cyclic dependencies) > > My project has two modules: > 1) generator -- depends on the "samples" for testing > 2) sample -- depends on the "generator" for building >

[m2] yet another cyclic dependency issue

2009-10-01 Thread Adrian Herscu
Hi all, (I already read all post regarding cyclic dependencies) My project has two modules: 1) generator -- depends on the "samples" for testing 2) sample -- depends on the "generator" for building I used to unpack the samples artifact into the target directory of the generator before running

tricky cyclic dependency issue ...

2009-03-25 Thread Giovanni Azua
hi, I have the following setup: ProjectX-API: pure abstract layer (depends on TestCommon at test scope) ProjectX-Core: main implementations (depends on API and also on TestCommon at test scope) ProjectX-TestCommon: offers common testing facilities to all ProjectX sub-modules, but also to clients

tricky cyclic dependency issue ...

2009-03-25 Thread Giovanni Azua
hi, I have the following setup: ProjectX-API: pure abstract layer (depends on TestCommon) ProjectX-Core: main implementations (depends on API and transitively on TestCommon) ProjectX-TestCommon: offers common testing facilities to all ProjectX sub-modules, but also to clients of ProjectX and it

Re: tricky cyclic dependency issue ...

2009-03-25 Thread Edelson, Justin
Move the concrete impls of your API interfaces into a seperate module. The only solution to cyclical dependencies is not to have them. Justin On Mar 25, 2009, at 8:21 AM, "Giovanni Azua" wrote: hi, I have the following setup: ProjectX-API: pure abstract layer (depends on TestCommon at

tricky cyclic dependency issue ...

2009-03-25 Thread Giovanni Azua
hi, I have the following setup: ProjectX-API: pure abstract layer (depends on TestCommon at test scope) ProjectX-Core: main implementations (depends on API and also on TestCommon at test scope) ProjectX-TestCommon: offers common testing facilities to all ProjectX sub-modules, but also to cl

tricky cyclic dependency issue

2009-03-25 Thread Giovanni Azua
provided, etc. Any other ideas how to resolve this? TIA, Best regards, Giovanni -- View this message in context: http://www.nabble.com/tricky-cyclic-dependency-issue-tp22700195p22700195.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: POM dependency issue (Reactor)

2008-12-04 Thread Stephen Connolly
Oh yeah, I forgot. Define two profiles, both active unless things say otherwise. Put parentPom1 as a module defined in profile 1 Put parentPom2 as a module defined in profile 2. If you do nothing, compiling bigParent will compile everything if you do mvn -Pprofile_1 then (as specifying an act

Re: POM dependency issue (Reactor)

2008-12-04 Thread Stephen Connolly
Alternatively, you could do. cd common mvn install cd ../parentPOM1 mvn install 2008/12/4 Rusty Wright <[EMAIL PROTECTED]> > If you haven't looked at it yet, try this: > > http://books.sonatype.com/maven-book/reference/multimodule-web-spring.html > > > solo1970 wrote: > >> This is my dilemna, ca

Re: POM dependency issue (Reactor)

2008-12-04 Thread Wayne Fay
> Can I configure my POM hierarchies in another way to be able to compile ONLY > parentPOM1 and common OR ONLY parentPOM2 and common Sure, with profiles. Wayne - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: POM dependency issue (Reactor)

2008-12-04 Thread Rusty Wright
If you haven't looked at it yet, try this: http://books.sonatype.com/maven-book/reference/multimodule-web-spring.html solo1970 wrote: This is my dilemna, ca anyone shed some light? I have the following configuration of POMs bigparentPOM ---> common > parentPOM 1 (depen

POM dependency issue (Reactor)

2008-12-04 Thread solo1970
tPOM2 and common Thanks in advance for your help -- View this message in context: http://www.nabble.com/POM-dependency-issue-%28Reactor%29-tp20836626p20836626.html Sent from the Maven - Users mailing list archive at Nabble.com. ---

Re: Weird Dependency Issue

2008-11-24 Thread David C. Hicks
Ah! I wondered what that "system" was all about. Thanks much! Mick Knutson wrote: You need to add it as a "System" dependency from where you have your JRE installed. - To unsubscribe, e-mail: [EMAIL PROTECTED] For add

Re: Weird Dependency Issue

2008-11-24 Thread Mick Knutson
You need to add it as a "System" dependency from where you have your JRE installed. On Mon, Nov 24, 2008 at 3:08 PM, David C. Hicks <[EMAIL PROTECTED]> wrote: > A colleague was getting an unsatisfied dependency error. While helping him > debug the problem, I came across a really odd situation.

Weird Dependency Issue

2008-11-24 Thread David C. Hicks
A colleague was getting an unsatisfied dependency error. While helping him debug the problem, I came across a really odd situation. The artifact in question is: com.sun:tools:jar:1.5.0:system This jar is not in either of our repositories, yet when we execute Maven on the command line we don

Re: Dependency issue

2008-08-26 Thread Shakun Gupta
. mvn dependency:tree will give you details of all dependencies for your project. From: Shakun Gupta [mailto:[EMAIL PROTECTED] Sent: Mon 25/08/2008 6:30 AM To: Maven Users List Subject: Dependency issue Hi, I am using two dependencies, both are dependent upon

RE: Dependency issue

2008-08-25 Thread Jeudy, Guillaume
Shakun, try using ... on one of them. mvn dependency:tree will give you details of all dependencies for your project. From: Shakun Gupta [mailto:[EMAIL PROTECTED] Sent: Mon 25/08/2008 6:30 AM To: Maven Users List Subject: Dependency issue Hi, I am

Dependency issue

2008-08-25 Thread Shakun Gupta
Hi, I am using two dependencies, both are dependent upon apache-comons-collections, but of different versions. So, my final jar / war contains two versions of commons-collections, is there a way to stop this. Regards, Shakun

Re: question about dependency issue in maven

2008-07-13 Thread wohlgemuth
hm this is weird, can you tell me which/ I'm very sure they all have poms. did you try to checkout the code? The url for this is svn co https://binbase.svn.sourceforge.net/svnroot/binbase/trunk/binbase binbase thx for your help. g. On Sun, Jul 13, 2008 at 4:55 AM, Siarhei Dudzin <[EMAIL PROTE

Re: question about dependency issue in maven

2008-07-13 Thread Siarhei Dudzin
I didn't find pom's in some of your submodules... Siarhei

question about dependency issue in maven

2008-07-12 Thread wohlgemuth
hello, I just got a short question about maven and depedencies. Basically I got a project with several sub projects which got more subprojects and so on. The exact structure can be seen here: http://binbase.fiehnlab.ucdavis.edu:8060/browse/BinBase/trunk/binbase including all the needed poms. N

Re: Ojdbc Dependency Issue

2008-03-15 Thread Trevor Torrez
I do want to point out that "14" is not the version of "ojdbc". It's the J2SE version that that jar supports; "classes12" is for java 1.2, ojdbc14 is for java 1.4, ojdbc5 and ojdbc 6 are for java 5 and 6 respectively. You should probably be referencing the jars as com.oracle ojdbc14

RE : Ojdbc Dependency Issue

2008-03-11 Thread Deneux, Christophe
print this email unless absolutely necessary. Capgemini encourages environmental awareness. De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Date: lun. 10/03/2008 17:18 À: Maven Users List Objet : Re: Ojdbc Dependency Issue TJ Greenier schrieb: > I am tryi

Re: Ojdbc Dependency Issue

2008-03-10 Thread [EMAIL PROTECTED]
TJ Greenier schrieb: > I am trying to find the Oracle Ojdbc14.jar file in the maven repository so > that I can successfully add this as a dependency in my pom.xml. I have > searched online and through the archives and all references point to the > following: > > > ojdbc >

Ojdbc Dependency Issue

2008-03-10 Thread TJ Greenier
I am trying to find the Oracle Ojdbc14.jar file in the maven repository so that I can successfully add this as a dependency in my pom.xml. I have searched online and through the archives and all references point to the following: ojdbc ojdbc 14

Re: [maven-release-plugin] release-prepare does not update parent-SNAPSHOT-dependency. issue?

2008-02-04 Thread alexsil
run *release:prepare* and you have >> SNAPSHOT dependencies in your pom. The plugin then asks you: >> >> "There are still some remaining snapshot dependencies.: Do you want to >> resolve them now? (yes/no) no: : " >> >> Any othe

Re: [maven-release-plugin] release-prepare does not update parent-SNAPSHOT-dependency. issue?

2008-01-21 Thread dhoffer
: : " > > Any other suggestions? > > Daniel > > > > -- View this message in context: http://www.nabble.com/-maven-release-plugin--release-perform-does-not-update-parent-SNAPSHOT-dependency.-issue--tp14917104s177p14996188.html Sent from the Maven - Users m

Re: [maven-release-plugin] release-prepare does not update parent-SNAPSHOT-dependency. issue?

2008-01-21 Thread Daniel Niklas
you: "There are still some remaining snapshot dependencies.: Do you want to resolve them now? (yes/no) no: : " Any other suggestions? Daniel -- View this message in context: http://www.nabble.com/-maven-release-plugin--release-perform-does-not-update-parent-SNAPSHOT-dependency.-i

Re: [maven-release-plugin] release-perform does not update parent-SNAPSHOT-dependency. issue?

2008-01-19 Thread dhoffer
org/POM/4.0.0 > http://maven.apache.org/maven-v4_0_0.xsd";> > 4.0.0 > de.continentale.vu.maven.plugins > maven-patch-plugin > > 1.1-SNAPSHOT > > maven-plugin > Ein Plugin zum Patchen von externen Jars. > Maven Patch Plugin > > > de.continentale.vu.common > main-pom > 1-SNAPSHOT > > > ... > > > > > What is going wrong here? Is this a bug? > > Best regards and thanks in advance > Daniel Niklas > -- View this message in context: http://www.nabble.com/-maven-release-plugin--release-perform-does-not-update-parent-SNAPSHOT-dependency.-issue--tp14917104s177p14974142.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[maven-release-plugin] release-perform does not update parent-SNAPSHOT-dependency. issue?

2008-01-17 Thread Daniel Niklas
Ein Plugin zum Patchen von externen Jars. Maven Patch Plugin de.continentale.vu.common main-pom 1-SNAPSHOT ... What is going wrong here? Is this a bug? Best regards an

maven-har multiple module dependency issue

2007-12-19 Thread Jeffrey Williams
Hi, I am not entirely sure this is the correct mailing list to post on for this plugin. The net.sf.mavin-har seems to have no posts. But I will continue on with my problem anyway. If there is a better place please let me know! I have a multiple module project The first module contains my hiberna

Maven dependency issue

2007-12-04 Thread Vishal Pahwa
Hi We are using maven2.0.6. If i add some dependency for my war file then it would include all the dependencies on which this particular dependency is dependent but i don't require those dependencies. So could anyone please tell me how to get away from this issue. One thing that i can do is use

Re: Dependency issue (war and jar) in multimodule project

2007-11-27 Thread Juven Xu
>utils/** > > false > > > ${basedir}/src/main/webapp/WEB-INF/classes > false > > > ${basedir}/src/main/java > > report.om.generation > > > >

Re: Dependency issue (war and jar) in multimodule project

2007-11-27 Thread Anand Rathi
lt;[EMAIL PROTECTED]> To: Maven Users List Sent: Tuesday, 27 November, 2007 12:32:13 PM Subject: Re: Dependency issue (war and jar) in multimodule project In your dependency declaration, did you include war for the child1 dep in the child2 pom? Or how are you declaring the dependency? Perhaps sho

Re: Dependency issue (war and jar) in multimodule project

2007-11-26 Thread Wayne Fay
-1.0-SNAPSHOT > > thanks, > Anand > > > - Original Message > From: Juven Xu <[EMAIL PROTECTED]> > To: Maven Users List > Sent: Tuesday, 27 November, 2007 7:01:59 AM > Subject: Re: Dependency issue (war and jar) in multimodule project > > Hi, Anand:

Re: Dependency issue (war and jar) in multimodule project

2007-11-26 Thread Anand Rathi
\war\work\child1-1.0-SNAPSHOT thanks, Anand - Original Message From: Juven Xu <[EMAIL PROTECTED]> To: Maven Users List Sent: Tuesday, 27 November, 2007 7:01:59 AM Subject: Re: Dependency issue (war and jar) in multimodule project Hi, Anand: If child2 has a dependency on child1 war,

Re: Dependency issue (war and jar) in multimodule project

2007-11-26 Thread Juven Xu
Hi, Anand: If child2 has a dependency on child1 war, I think you don't need to make dependency on child1 jar. Cause all the xml file and class file will be inherited. Thanks, Juven On Nov 26, 2007 3:34 PM, Anand Rathi <[EMAIL PROTECTED]> wrote: > Hi, > > I have a multimodule project as sh

Dependency issue (war and jar) in multimodule project

2007-11-25 Thread Anand Rathi
Hi, I have a multimodule project as shown below: - parent (pom) - child1 (war) - child2 (war) child2 project has a dependency on child1 jar as well as war. This is required because child1 war contains some xml files which I need at the child2 war creation time. I am building th

RE: [m2] Multi-project dependency issue

2007-06-11 Thread Orford, Ian
sage- > From: Wayne Fay [mailto:[EMAIL PROTECTED] > Sent: 08 June 2007 17:37 > To: Maven Users List > Subject: Re: [m2] Multi-project dependency issue > > Ian, you must be doing something weird/wrong, or you're doing > something more complex than you're describ

Re: [m2] Multi-project dependency issue

2007-06-08 Thread Wayne Fay
gt; From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Vandermeeren, Jo > Sent: 08 June 2007 14:21 > To: Maven Users List > Subject: Re: [m2] Multi-project dependency issue > > On 6/8/07, Orford, Ian <[EMAIL PROTECTED]> wrote: > > > > P is the parent PO

RE: [m2] Multi-project dependency issue

2007-06-08 Thread Orford, Ian
t > Subject: Re: [m2] Multi-project dependency issue > > On 6/8/07, Orford, Ian <[EMAIL PROTECTED]> wrote: > > > > P is the parent POM that has modules A, B, C and D. > > P defines A, B, C and D in A has P > as a parent > > and no dependencies at al

Re: [m2] Multi-project dependency issue

2007-06-08 Thread Vandermeeren, Jo
On 6/8/07, Orford, Ian <[EMAIL PROTECTED]> wrote: P is the parent POM that has modules A, B, C and D. P defines A, B, C and D in A has P as a parent and no dependencies at all. B has P as a parent and defines A in C has P as a parent and defines A and B in D has P as a parent and defines C in

[m2] Multi-project dependency issue

2007-06-08 Thread Orford, Ian
I'm using maven 2.0.6. I have a multi-module project. P is the parent POM that has modules A, B, C and D. P defines A, B, C and D in A has P as a parent and no dependencies at all. B has P as a parent and defines A in C has P as a parent and defines A and B in D has P as a parent and defines C

RE: Maven 2.0 Classpath Dependency Issue

2006-10-18 Thread Devine, James
Wayne - Thank you very much - this worked well. You just saved me a lot of headaches :) Jim -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 1:26 PM To: Maven Users List Subject: Re: Maven 2.0 Classpath Dependency Issue I would move those

Re: Maven 2.0 Classpath Dependency Issue

2006-10-18 Thread Wayne Fay
0 Classpath Dependency Issue On 10/18/06, Devine, James <[EMAIL PROTECTED]> wrote: > I am new to Maven. I am trying to compile commons-discovery with JDK > 1.5, but the dependent jars don't seem to be in my classpath. Here is > my pom.xml: ... > compiler Unless that'

RE: Maven 2.0 Classpath Dependency Issue

2006-10-18 Thread Devine, James
Sorry...that is a typo. I get the same error with compile or no tag. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 12:57 PM To: Maven Users List Subject: Re: Maven 2.0 Classpath Dependency Issue On 10/18/06, Devine, James <[EM

Re: Maven 2.0 Classpath Dependency Issue

2006-10-18 Thread Wendy Smoak
On 10/18/06, Devine, James <[EMAIL PROTECTED]> wrote: I am new to Maven. I am trying to compile commons-discovery with JDK 1.5, but the dependent jars don't seem to be in my classpath. Here is my pom.xml: ... compiler Unless that's a typo, it should either be 'compile' or just left out enti

Maven 2.0 Classpath Dependency Issue

2006-10-18 Thread Devine, James
I am new to Maven. I am trying to compile commons-discovery with JDK 1.5, but the dependent jars don't seem to be in my classpath. Here is my pom.xml: 4.0.0 org.apache.commons commons-discovery 0.2 C:\maven\commons-discovery-0.2-src\discovery\src\java org.apach

Re: test\resources dependency issue

2006-08-18 Thread Nick Veys
Take a look here: http://maven.apache.org/guides/mini/guide-attached-tests.html You can deploy the tests (which include resources) for a model, then depend on that as well. On 8/18/06, Kapil Gupta(CT) <[EMAIL PROTECTED]> wrote: Hi, I have a multi module project with two modules A and B (depend

test\resources dependency issue

2006-08-18 Thread Kapil Gupta\(CT\)
Hi, I have a multi module project with two modules A and B (depends on A). Can I use a resource (XML) file which is available in test\resources folder of module A while running test cases of module B? I receive FileNotFoundException on loading the XML from module B. I tried to use test scope inste

RE: [m2] Need help with dependency issue + Eclipse Plugin + Displaytag + beanutils

2006-04-26 Thread KC Baltz
PROTECTED] Sent: Wednesday, April 26, 2006 10:01 AM To: Maven Users List (E-mail) Subject: [m2] Need help with dependency issue + Eclipse Plugin + Displaytag + beanutils I'm having a strange difficulty involving the Eclipse plugin, displaytag-1.1, and beanutils. The displaytag-1.1 tag li

[m2] Need help with dependency issue + Eclipse Plugin + Displaytag + beanutils

2006-04-26 Thread KC Baltz
I'm having a strange difficulty involving the Eclipse plugin, displaytag-1.1, and beanutils. The displaytag-1.1 tag library depends on beanutils 1.7. When I run: mvn -U -Dmaven.test.skip=true clean compile eclipse:clean eclipse:eclipse -Dwtpversion=1.0 -DdownloadSources=false it produces