Re: How to include WAR dependency in project

2012-05-01 Thread Ron Wheeler

What are you trying to do?
It is unusual for a WAR to be a dependency.
 Even more unusual for a WebService to be a dependency.

What are you testing?

Ron

On 01/05/2012 2:44 PM, Daivish Shah wrote:

Hi,

I have following dependency declared in my UNIT Testing module project.

dependency
 groupIdsample-project-ws/groupId
 artifactIdsample-project-ws/artifactId

  version${project.version}/version

 typewar/type
 scopetest/scope
/dependency


And i also have following entry in my unit testing module project
which is different then my web service project.

plugins
 plugin
 groupIdorg.apache.maven.plugins/groupId
 artifactIdmaven-war-plugin/artifactId
 configuration
 overlays
 overlay/
 overlay
 groupIdsample-project-ws/groupId
 artifactIdyour-project-artifactId/artifactId
 /overlay
 /overlays
 /configuration
 /plugin

And i am using Webservice depedency classes, in my JUNIT module which
is build under that WAR project.

But i am not able to add it, Please help me out on this.


Thanks.




--
Ron Wheeler
President
Artifact Software Inc
email: rwhee...@artifact-software.com
skype: ronaldmwheeler
phone: 866-970-2435, ext 102


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: How to include WAR dependency in project

2012-05-01 Thread Daivish Shah
I have some integration UNIT test cases.

Which require me to include those JAVA files in my integration unit test
module, And this module is designed to include all UNIT test case for that
parent project.

I hope you got it. But do you have any solution of my question ?



On Tue, May 1, 2012 at 11:59 AM, Ron Wheeler rwhee...@artifact-software.com
 wrote:

 What are you trying to do?
 It is unusual for a WAR to be a dependency.
  Even more unusual for a WebService to be a dependency.

 What are you testing?

 Ron


 On 01/05/2012 2:44 PM, Daivish Shah wrote:

 Hi,

 I have following dependency declared in my UNIT Testing module project.

 dependency
 groupIdsample-project-ws/**groupId
 artifactIdsample-project-ws**/artifactId

  version${project.version}/**version

 typewar/type
 scopetest/scope
 /dependency


 And i also have following entry in my unit testing module project
 which is different then my web service project.

 plugins
 plugin
 groupIdorg.apache.maven.**plugins/groupId
 artifactIdmaven-war-plugin/**artifactId
 configuration
 overlays
 overlay/
 overlay
 groupIdsample-project-ws/**groupId
 artifactIdyour-project-**artifactId/artifactId
 /overlay
 /overlays
 /configuration
 /plugin

 And i am using Webservice depedency classes, in my JUNIT module which
 is build under that WAR project.

 But i am not able to add it, Please help me out on this.


 Thanks.



 --
 Ron Wheeler
 President
 Artifact Software Inc
 email: rwhee...@artifact-software.com
 skype: ronaldmwheeler
 phone: 866-970-2435, ext 102


 --**--**-
 To unsubscribe, e-mail: 
 users-unsubscribe@maven.**apache.orgusers-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org




Re: How to include WAR dependency in project

2012-05-01 Thread Ron Wheeler

Break the WAR project into 2 projects.
One with code that makes a JAR and one without code to make a WAR.

You could put your unit tests in the jar project which is what most 
people do or make a third project that has some test routines that test 
your code.


Ron

On 01/05/2012 3:12 PM, Daivish Shah wrote:

I have some integration UNIT test cases.

Which require me to include those JAVA files in my integration unit test
module, And this module is designed to include all UNIT test case for that
parent project.

I hope you got it. But do you have any solution of my question ?



On Tue, May 1, 2012 at 11:59 AM, Ron Wheelerrwhee...@artifact-software.com

wrote:
What are you trying to do?
It is unusual for a WAR to be a dependency.
  Even more unusual for a WebService to be a dependency.

What are you testing?

Ron


On 01/05/2012 2:44 PM, Daivish Shah wrote:


Hi,

I have following dependency declared in my UNIT Testing module project.

dependency
 groupIdsample-project-ws/**groupId
 artifactIdsample-project-ws**/artifactId

  version${project.version}/**version

 typewar/type
 scopetest/scope
/dependency


And i also have following entry in my unit testing module project
which is different then my web service project.

plugins
 plugin
 groupIdorg.apache.maven.**plugins/groupId
 artifactIdmaven-war-plugin/**artifactId
 configuration
 overlays
 overlay/
 overlay
 groupIdsample-project-ws/**groupId
 artifactIdyour-project-**artifactId/artifactId
 /overlay
 /overlays
 /configuration
 /plugin

And i am using Webservice depedency classes, in my JUNIT module which
is build under that WAR project.

But i am not able to add it, Please help me out on this.


Thanks.



--
Ron Wheeler
President
Artifact Software Inc
email: rwhee...@artifact-software.com
skype: ronaldmwheeler
phone: 866-970-2435, ext 102


--**--**-
To unsubscribe, e-mail: 
users-unsubscribe@maven.**apache.orgusers-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org





--
Ron Wheeler
President
Artifact Software Inc
email: rwhee...@artifact-software.com
skype: ronaldmwheeler
phone: 866-970-2435, ext 102


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: How to include WAR dependency in project

2012-05-01 Thread Stanimir Stamenkov

Tue, 1 May 2012 11:44:27 -0700, /Daivish Shah/:


I have following dependency declared in my UNIT Testing module project.

dependency
groupIdsample-project-ws/groupId
artifactIdsample-project-ws/artifactId
version${project.version}/version
typewar/type
scopetest/scope
/dependency
[...]


If you control the POM of sample-project-ws you could produce 
additional 'classes' jar artifact:


http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#attachClasses

which you could then refer to as dependency from other modules:

dependency
groupIdsample-project-ws/groupId
artifactIdsample-project-ws/artifactId
version${project.version}/version
classifierclasses/classifier
scopetest/scope
/dependency

--
Stanimir

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: How to include WAR dependency in project

2012-05-01 Thread Daivish Shah
Thanks Stanimir,


I modified my code like this.

JUNIT Module POM.XML

dependency
groupIdsample-project-ws/groupId
artifactIdsample-project-ws/artifactId

 version${project.version}/version
 classifierclasses/classes
scopetest/scope
/dependency


My sample-project-ws POM.XML

plugins
plugin
groupIdorg.apache.maven.plugins/groupId
artifactIdmaven-war-plugin/artifactId
configuration
   attachClassestrue/attachClasses
/configuration
/plugin


Thanks a lot for your help.




On Tue, May 1, 2012 at 1:08 PM, Stanimir Stamenkov s7a...@netscape.netwrote:

 Tue, 1 May 2012 11:44:27 -0700, /Daivish Shah/:

  I have following dependency declared in my UNIT Testing module project.

 dependency
groupIdsample-project-ws/**groupId
artifactIdsample-project-ws**/artifactId
version${project.version}/**version
typewar/type
scopetest/scope
 /dependency
 [...]


 If you control the POM of sample-project-ws you could produce additional
 'classes' jar artifact:

 http://maven.apache.org/**plugins/maven-war-plugin/war-**
 mojo.html#attachClasseshttp://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#attachClasses

 which you could then refer to as dependency from other modules:


 dependency
groupIdsample-project-ws/**groupId
artifactIdsample-project-ws**/artifactId
version${project.version}/**version
classifierclasses/**classifier
scopetest/scope
 /dependency

 --
 Stanimir


 --**--**-
 To unsubscribe, e-mail: 
 users-unsubscribe@maven.**apache.orgusers-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org