maven sources plugin

2008-02-15 Thread rohit aman
Hi,
I recently started using gwt in my struts project. We use maven as a
project management tool. Since GWT needs java sources to be in the class
path for it to compile the java files and my gwt module uses other module
java classes, I thought of trying maven sources plugin to generate the
source files jars for all the modules of my project. the maven plugin
creates one jar file for .class file and one for .java file...

so for ex ... if there is a project called java-proj , the plugin will
create
com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT.jar
com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT-sources.jar
now if my gwt project uses some classes from the above project so I need to
define the dependency...
for classes I can say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
and it looks for java-proj-1.0-SNAPSHOT.jar in
com/my/company/java-proj/1.0-SNAPSHOT/   directory
but I am not able to figure out how to define the dependency on source file
because if I say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
it looks for java-proj-1.0-SNAPSHOT-sources.jar in
com/my/company/java-proj/1.0-SNAPSHOT-sources but the jar is in
com/my/company/java-proj/1.0-SNAPSHOT.
Any idea on how to define dependency on java-proj-1.0-SNAPSHOT-sources.jar
which not in com/my/company/java-proj/1.0-SNAPSHOT-sources but in
com/my/company/java-proj/1.0-SNAPSHOT-sources 

Any input is appreciated

Thanks


Re: maven sources plugin

2008-02-15 Thread rohit aman
Hey Wayne... for some reason I did not get any reply to the first post. my
apologies to the group for redundant e-mails

On Fri, Feb 15, 2008 at 10:41 AM, Wayne Fay [EMAIL PROTECTED] wrote:

 Rohit, I replied to this email with the same response 15hrs ago. Why
 are you resending the email, and why didn't you just reply to your
 original thread? Did you not see the response?

 Wayne

 On 2/15/08, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  You are looking for the classifier of the dependency:
 
 dependency
   groupIdcom.my.company/groupId
   artifactIdjava-proj/artifactId
   version1.0-SNAPSHOT/version
   classifiersources/classifier
 /dependency
 
  See
 http://maven.apache.org/ref/2.0.7/maven-model/maven.html#class_dependency
 
  Hth,
 
  Nick S.
 
  -Original Message-
  From: rohit aman [mailto:[EMAIL PROTECTED]
  Sent: Fri 2/15/2008 18:10
  To: users@maven.apache.org
  Subject: maven sources plugin
 
  Hi,
 I recently started using gwt in my struts project. We use maven as a
  project management tool. Since GWT needs java sources to be in the class
  path for it to compile the java files and my gwt module uses other
 module
  java classes, I thought of trying maven sources plugin to generate the
  source files jars for all the modules of my project. the maven plugin
  creates one jar file for .class file and one for .java file...
 
  so for ex ... if there is a project called java-proj , the plugin will
  create
  com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT.jar
  com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT-sources.jar
  now if my gwt project uses some classes from the above project so I need
 to
  define the dependency...
  for classes I can say
 dependency
   groupIdcom.my.company/groupId
   artifactIdjava-proj/artifactId
   version1.0-SNAPSHOT/version
 /dependency
  and it looks for java-proj-1.0-SNAPSHOT.jar in
  com/my/company/java-proj/1.0-SNAPSHOT/   directory
  but I am not able to figure out how to define the dependency on source
 file
  because if I say
 dependency
   groupIdcom.my.company/groupId
   artifactIdjava-proj/artifactId
   version1.0-SNAPSHOT/version
 /dependency
  it looks for java-proj-1.0-SNAPSHOT-sources.jar in
  com/my/company/java-proj/1.0-SNAPSHOT-sources but the jar is in
  com/my/company/java-proj/1.0-SNAPSHOT.
  Any idea on how to define dependency on 
 java-proj-1.0-SNAPSHOT-sources.jar
  which not in com/my/company/java-proj/1.0-SNAPSHOT-sources but in
  com/my/company/java-proj/1.0-SNAPSHOT-sources 
 
  Any input is appreciated
 
  Thanks
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




RE: maven sources plugin

2008-02-15 Thread nicklist
You are looking for the classifier of the dependency:

dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
  classifiersources/classifier
/dependency

See http://maven.apache.org/ref/2.0.7/maven-model/maven.html#class_dependency

Hth,

Nick S.

-Original Message-
From: rohit aman [mailto:[EMAIL PROTECTED]
Sent: Fri 2/15/2008 18:10
To: users@maven.apache.org
Subject: maven sources plugin
 
Hi,
I recently started using gwt in my struts project. We use maven as a
project management tool. Since GWT needs java sources to be in the class
path for it to compile the java files and my gwt module uses other module
java classes, I thought of trying maven sources plugin to generate the
source files jars for all the modules of my project. the maven plugin
creates one jar file for .class file and one for .java file...

so for ex ... if there is a project called java-proj , the plugin will
create
com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT.jar
com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT-sources.jar
now if my gwt project uses some classes from the above project so I need to
define the dependency...
for classes I can say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
and it looks for java-proj-1.0-SNAPSHOT.jar in
com/my/company/java-proj/1.0-SNAPSHOT/   directory
but I am not able to figure out how to define the dependency on source file
because if I say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
it looks for java-proj-1.0-SNAPSHOT-sources.jar in
com/my/company/java-proj/1.0-SNAPSHOT-sources but the jar is in
com/my/company/java-proj/1.0-SNAPSHOT.
Any idea on how to define dependency on java-proj-1.0-SNAPSHOT-sources.jar
which not in com/my/company/java-proj/1.0-SNAPSHOT-sources but in
com/my/company/java-proj/1.0-SNAPSHOT-sources 

Any input is appreciated

Thanks



Re: maven sources plugin

2008-02-15 Thread Wayne Fay
Rohit, I replied to this email with the same response 15hrs ago. Why
are you resending the email, and why didn't you just reply to your
original thread? Did you not see the response?

Wayne

On 2/15/08, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 You are looking for the classifier of the dependency:

dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
  classifiersources/classifier
/dependency

 See http://maven.apache.org/ref/2.0.7/maven-model/maven.html#class_dependency

 Hth,

 Nick S.

 -Original Message-
 From: rohit aman [mailto:[EMAIL PROTECTED]
 Sent: Fri 2/15/2008 18:10
 To: users@maven.apache.org
 Subject: maven sources plugin

 Hi,
I recently started using gwt in my struts project. We use maven as a
 project management tool. Since GWT needs java sources to be in the class
 path for it to compile the java files and my gwt module uses other module
 java classes, I thought of trying maven sources plugin to generate the
 source files jars for all the modules of my project. the maven plugin
 creates one jar file for .class file and one for .java file...

 so for ex ... if there is a project called java-proj , the plugin will
 create
 com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT.jar
 com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT-sources.jar
 now if my gwt project uses some classes from the above project so I need to
 define the dependency...
 for classes I can say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
 and it looks for java-proj-1.0-SNAPSHOT.jar in
 com/my/company/java-proj/1.0-SNAPSHOT/   directory
 but I am not able to figure out how to define the dependency on source file
 because if I say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
 it looks for java-proj-1.0-SNAPSHOT-sources.jar in
 com/my/company/java-proj/1.0-SNAPSHOT-sources but the jar is in
 com/my/company/java-proj/1.0-SNAPSHOT.
 Any idea on how to define dependency on java-proj-1.0-SNAPSHOT-sources.jar
 which not in com/my/company/java-proj/1.0-SNAPSHOT-sources but in
 com/my/company/java-proj/1.0-SNAPSHOT-sources 

 Any input is appreciated

 Thanks



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven sources plugin

2008-02-15 Thread rohit aman
Thanks Nick... that helps

On Fri, Feb 15, 2008 at 10:35 AM, [EMAIL PROTECTED] wrote:

 You are looking for the classifier of the dependency:

dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
  classifiersources/classifier
/dependency

 See
 http://maven.apache.org/ref/2.0.7/maven-model/maven.html#class_dependency

 Hth,

 Nick S.

 -Original Message-
 From: rohit aman [mailto:[EMAIL PROTECTED]
 Sent: Fri 2/15/2008 18:10
 To: users@maven.apache.org
 Subject: maven sources plugin

 Hi,
I recently started using gwt in my struts project. We use maven as a
 project management tool. Since GWT needs java sources to be in the class
 path for it to compile the java files and my gwt module uses other module
 java classes, I thought of trying maven sources plugin to generate the
 source files jars for all the modules of my project. the maven plugin
 creates one jar file for .class file and one for .java file...

 so for ex ... if there is a project called java-proj , the plugin will
 create
 com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT.jar
 com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT-sources.jar
 now if my gwt project uses some classes from the above project so I need
 to
 define the dependency...
 for classes I can say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
 and it looks for java-proj-1.0-SNAPSHOT.jar in
 com/my/company/java-proj/1.0-SNAPSHOT/   directory
 but I am not able to figure out how to define the dependency on source
 file
 because if I say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
 it looks for java-proj-1.0-SNAPSHOT-sources.jar in
 com/my/company/java-proj/1.0-SNAPSHOT-sources but the jar is in
 com/my/company/java-proj/1.0-SNAPSHOT.
 Any idea on how to define dependency on 
 java-proj-1.0-SNAPSHOT-sources.jar
 which not in com/my/company/java-proj/1.0-SNAPSHOT-sources but in
 com/my/company/java-proj/1.0-SNAPSHOT-sources 

 Any input is appreciated

 Thanks




rltd to maven sources plugin - adding java sources jar to class path

2008-02-14 Thread rohit aman
Hi,

I recently started using gwt in my struts project. We use maven as a
project management tool. Since GWT needs java sources to be in the class
path for it to compile the java files and my gwt module uses other module
java classes, I thought of trying maven sources plugin to generate the
source files jars for all the modules of my project. the maven plugin
creates one jar file for .class file and one for .java file...

so for ex ... if there is a project called java-proj , the plugin will
create

com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT.jar
com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT-sources.jar

now if my gwt project uses some classes from the above project so I need to
define the dependency...

for classes I can say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
and it looks for java-proj-1.0-SNAPSHOT.jar in
com/my/company/java-proj/1.0-SNAPSHOT/   directory

but I am not able to figure out how to define the dependency on source file
because if I say

dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency

it looks for java-proj-1.0-SNAPSHOT-sources.jar in
com/my/company/java-proj/1.0-SNAPSHOT-sources but the jar is in
com/my/company/java-proj/1.0-SNAPSHOT.
Any idea on how to define dependency on java-proj-1.0-SNAPSHOT-sources.jar
which not in com/my/company/java-proj/1.0-SNAPSHOT-sources but in
com/my/company/java-proj/1.0-SNAPSHOT-sources 

Any input is appreciated

Thanks


Re: rltd to maven sources plugin - adding java sources jar to class path

2008-02-14 Thread Wayne Fay
Add classifiersources/classifier to your dependency declaration as needed.

Wayne

On 2/14/08, rohit aman [EMAIL PROTECTED] wrote:
 Hi,

I recently started using gwt in my struts project. We use maven as a
 project management tool. Since GWT needs java sources to be in the class
 path for it to compile the java files and my gwt module uses other module
 java classes, I thought of trying maven sources plugin to generate the
 source files jars for all the modules of my project. the maven plugin
 creates one jar file for .class file and one for .java file...

 so for ex ... if there is a project called java-proj , the plugin will
 create

 com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT.jar
 com/my/company/java-proj/1.0-SNAPSHOT/java-proj-1.0-SNAPSHOT-sources.jar

 now if my gwt project uses some classes from the above project so I need to
 define the dependency...

 for classes I can say
dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency
 and it looks for java-proj-1.0-SNAPSHOT.jar in
 com/my/company/java-proj/1.0-SNAPSHOT/   directory

 but I am not able to figure out how to define the dependency on source file
 because if I say

dependency
  groupIdcom.my.company/groupId
  artifactIdjava-proj/artifactId
  version1.0-SNAPSHOT/version
/dependency

 it looks for java-proj-1.0-SNAPSHOT-sources.jar in
 com/my/company/java-proj/1.0-SNAPSHOT-sources but the jar is in
 com/my/company/java-proj/1.0-SNAPSHOT.
 Any idea on how to define dependency on java-proj-1.0-SNAPSHOT-sources.jar
 which not in com/my/company/java-proj/1.0-SNAPSHOT-sources but in
 com/my/company/java-proj/1.0-SNAPSHOT-sources 

 Any input is appreciated

 Thanks


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]