Re: source and javadoc jars from test-jar

2013-06-04 Thread Kurt T Stam

Thank you Stephen,

After also updating the dependencies in the pom to:


org.apache.juddi
uddi-tck
${project.parent.version}
test-javadoc
jar


things started working.

Cheers,

--Kurt

On 6/4/13 9:25 AM, Stephen Connolly wrote:

the packaging is `jar` not `test-jar` there is only one artifact with
`test-jar` packaging, namely the `test-jar`

You want to use

org.apache.juddi:**uddi-tck:jar:test-sources
org.apache.juddi:**uddi-tck:jar:test-javadoc

Not a bug


On 4 June 2013 14:02, Kurt T Stam  wrote:


I'm assuming it is a bug and opened http://jira.codehaus.org/**
browse/MSOURCES-66 


On 6/3/13 2:26 PM, Kurt T Stam wrote:


Hi guys,

I'm trying to add 'test-jar' resources to my assembly; i.e. the following
jars are created by one of our other modules:

main:
-rw-r--r--   1 kstam  admin 11603 Jun  3 11:29
uddi-tck-3.2.0-SNAPSHOT.jar
-rw-r--r--   1 kstam  admin 27880 Jun  3 11:29
uddi-tck-3.2.0-SNAPSHOT-**javadoc.jar
-rw-r--r--   1 kstam  admin  8873 Jun  3 11:29
uddi-tck-3.2.0-SNAPSHOT-**sources.jar
test:
-rw-r--r--   1 kstam  admin106397 Jun  3 11:29
uddi-tck-3.2.0-SNAPSHOT-tests.**jar
-rw-r--r--   1 kstam  admin149558 Jun  3 11:29
uddi-tck-3.2.0-SNAPSHOT-test-**javadoc.jar
-rw-r--r--   1 kstam  admin 62545 Jun  3 11:29
uddi-tck-3.2.0-SNAPSHOT-test-**sources.jar

I can successfully add the uddi-tck-3.2.0-SNAPSHOT-tests.**jar to my
assembly using

  ...


bin
 
org.apache.juddi:**juddi-client:jar
org.apache.juddi:**uddi-tck:jar
org.apache.juddi:**uddi-tck:test-jar
...

However when I try to add the source jar:
...
 
 
src
 test
 
org.apache.juddi:**juddi-client:jar:sources
org.apache.juddi:**uddi-tck:jar:sources
org.apache.juddi:**uddi-tck:test-jar:sources
...


Then the uddi-tck-3.2.0-SNAPSHOT-**sources.jar is NOT picked up. I made
sure we reference the source
and javadoc artifacts in the pom.xml:

   
 org.apache.juddi
 uddi-tck
${project.parent.**version}
 test-jar
 sources
 

 org.apache.juddi
 uddi-tck
${project.parent.**version}
 javadoc
 test-jar
 


Full pom and assembly.xml:
http://svn.apache.org/repos/**asf/juddi/trunk/uddi-client-**dist/pom.xml
http://svn.apache.org/repos/**asf/juddi/trunk/uddi-client-**
dist/src/main/assembly/**assembly.xml

When running with -X it says:

[DEBUG] Adding artifact: org.apache.juddi:uddi-tck:**
test-jar:sources:3.2.0-**SNAPSHOT with file: /Users/kstam/.m2/repository/
**org/apache/juddi/uddi-tck/3.2.**0-SNAPSHOT/uddi-tck-3.2.0-**SNAPSHOT-sources.jar
to assembly location: src/uddi-tck-3.2.0-SNAPSHOT-**sources.jar.

so it seem to be adding the source *jar*, rather then the *test-jar*.
eventhough it says it's going to add the *test-jar* version:

Adding artifact: org.apache.juddi:uddi-tck:**test-jar:sources:3.2.0-**
SNAPSHOT


Does anyone has an idea what I'm doing wrong? Is this a bug?
Any help you can provide would be great.

Thx,

--Kurt



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





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



Re: source and javadoc jars from test-jar

2013-06-04 Thread Stephen Connolly
the packaging is `jar` not `test-jar` there is only one artifact with
`test-jar` packaging, namely the `test-jar`

You want to use

org.apache.juddi:**uddi-tck:jar:test-sources
org.apache.juddi:**uddi-tck:jar:test-javadoc

Not a bug


On 4 June 2013 14:02, Kurt T Stam  wrote:

> I'm assuming it is a bug and opened http://jira.codehaus.org/**
> browse/MSOURCES-66 
>
>
> On 6/3/13 2:26 PM, Kurt T Stam wrote:
>
>> Hi guys,
>>
>> I'm trying to add 'test-jar' resources to my assembly; i.e. the following
>> jars are created by one of our other modules:
>>
>> main:
>> -rw-r--r--   1 kstam  admin 11603 Jun  3 11:29
>> uddi-tck-3.2.0-SNAPSHOT.jar
>> -rw-r--r--   1 kstam  admin 27880 Jun  3 11:29
>> uddi-tck-3.2.0-SNAPSHOT-**javadoc.jar
>> -rw-r--r--   1 kstam  admin  8873 Jun  3 11:29
>> uddi-tck-3.2.0-SNAPSHOT-**sources.jar
>> test:
>> -rw-r--r--   1 kstam  admin106397 Jun  3 11:29
>> uddi-tck-3.2.0-SNAPSHOT-tests.**jar
>> -rw-r--r--   1 kstam  admin149558 Jun  3 11:29
>> uddi-tck-3.2.0-SNAPSHOT-test-**javadoc.jar
>> -rw-r--r--   1 kstam  admin 62545 Jun  3 11:29
>> uddi-tck-3.2.0-SNAPSHOT-test-**sources.jar
>>
>> I can successfully add the uddi-tck-3.2.0-SNAPSHOT-tests.**jar to my
>> assembly using
>>
>>  ...
>> 
>>
>> bin
>> 
>> org.apache.juddi:**juddi-client:jar
>> org.apache.juddi:**uddi-tck:jar
>> org.apache.juddi:**uddi-tck:test-jar
>> ...
>>
>> However when I try to add the source jar:
>> ...
>> 
>> 
>> src
>> test
>> 
>> org.apache.juddi:**juddi-client:jar:sources
>> org.apache.juddi:**uddi-tck:jar:sources
>> org.apache.juddi:**uddi-tck:test-jar:sources
>> ...
>>
>>
>> Then the uddi-tck-3.2.0-SNAPSHOT-**sources.jar is NOT picked up. I made
>> sure we reference the source
>> and javadoc artifacts in the pom.xml:
>>
>>   
>> org.apache.juddi
>> uddi-tck
>> ${project.parent.**version}
>> test-jar
>> sources
>> 
>>
>> org.apache.juddi
>> uddi-tck
>> ${project.parent.**version}
>> javadoc
>> test-jar
>> 
>>
>>
>> Full pom and assembly.xml:
>> http://svn.apache.org/repos/**asf/juddi/trunk/uddi-client-**dist/pom.xml
>> http://svn.apache.org/repos/**asf/juddi/trunk/uddi-client-**
>> dist/src/main/assembly/**assembly.xml
>>
>> When running with -X it says:
>>
>> [DEBUG] Adding artifact: org.apache.juddi:uddi-tck:**
>> test-jar:sources:3.2.0-**SNAPSHOT with file: /Users/kstam/.m2/repository/
>> **org/apache/juddi/uddi-tck/3.2.**0-SNAPSHOT/uddi-tck-3.2.0-**SNAPSHOT-sources.jar
>> to assembly location: src/uddi-tck-3.2.0-SNAPSHOT-**sources.jar.
>>
>> so it seem to be adding the source *jar*, rather then the *test-jar*.
>> eventhough it says it's going to add the *test-jar* version:
>>
>> Adding artifact: org.apache.juddi:uddi-tck:**test-jar:sources:3.2.0-**
>> SNAPSHOT
>>
>>
>> Does anyone has an idea what I'm doing wrong? Is this a bug?
>> Any help you can provide would be great.
>>
>> Thx,
>>
>> --Kurt
>>
>>
>
> --**--**-
> To unsubscribe, e-mail: 
> users-unsubscribe@maven.**apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>


Re: source and javadoc jars from test-jar

2013-06-04 Thread Kurt T Stam
I'm assuming it is a bug and opened 
http://jira.codehaus.org/browse/MSOURCES-66


On 6/3/13 2:26 PM, Kurt T Stam wrote:

Hi guys,

I'm trying to add 'test-jar' resources to my assembly; i.e. the 
following jars are created by one of our other modules:


main:
-rw-r--r--   1 kstam  admin 11603 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT.jar
-rw-r--r--   1 kstam  admin 27880 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-javadoc.jar
-rw-r--r--   1 kstam  admin  8873 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-sources.jar

test:
-rw-r--r--   1 kstam  admin106397 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-tests.jar
-rw-r--r--   1 kstam  admin149558 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-test-javadoc.jar
-rw-r--r--   1 kstam  admin 62545 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-test-sources.jar


I can successfully add the uddi-tck-3.2.0-SNAPSHOT-tests.jar to my 
assembly using


 ...


bin

org.apache.juddi:juddi-client:jar
org.apache.juddi:uddi-tck:jar
org.apache.juddi:uddi-tck:test-jar
...

However when I try to add the source jar:
...


src
test

org.apache.juddi:juddi-client:jar:sources
org.apache.juddi:uddi-tck:jar:sources
org.apache.juddi:uddi-tck:test-jar:sources
...


Then the uddi-tck-3.2.0-SNAPSHOT-sources.jar is NOT picked up. I made 
sure we reference the source

and javadoc artifacts in the pom.xml:

  
org.apache.juddi
uddi-tck
${project.parent.version}
test-jar
sources

   
org.apache.juddi
uddi-tck
${project.parent.version}
javadoc
test-jar



Full pom and assembly.xml:
http://svn.apache.org/repos/asf/juddi/trunk/uddi-client-dist/pom.xml
http://svn.apache.org/repos/asf/juddi/trunk/uddi-client-dist/src/main/assembly/assembly.xml 



When running with -X it says:

[DEBUG] Adding artifact: 
org.apache.juddi:uddi-tck:test-jar:sources:3.2.0-SNAPSHOT with file: 
/Users/kstam/.m2/repository/org/apache/juddi/uddi-tck/3.2.0-SNAPSHOT/uddi-tck-3.2.0-SNAPSHOT-sources.jar 
to assembly location: src/uddi-tck-3.2.0-SNAPSHOT-sources.jar.


so it seem to be adding the source *jar*, rather then the *test-jar*. 
eventhough it says it's going to add the *test-jar* version:


Adding artifact: 
org.apache.juddi:uddi-tck:test-jar:sources:3.2.0-SNAPSHOT



Does anyone has an idea what I'm doing wrong? Is this a bug?
Any help you can provide would be great.

Thx,

--Kurt




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



source and javadoc jars from test-jar

2013-06-03 Thread Kurt T Stam

Hi guys,

I'm trying to add 'test-jar' resources to my assembly; i.e. the 
following jars are created by one of our other modules:


main:
-rw-r--r--   1 kstam  admin 11603 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT.jar
-rw-r--r--   1 kstam  admin 27880 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-javadoc.jar
-rw-r--r--   1 kstam  admin  8873 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-sources.jar

test:
-rw-r--r--   1 kstam  admin106397 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-tests.jar
-rw-r--r--   1 kstam  admin149558 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-test-javadoc.jar
-rw-r--r--   1 kstam  admin 62545 Jun  3 11:29 
uddi-tck-3.2.0-SNAPSHOT-test-sources.jar


I can successfully add the uddi-tck-3.2.0-SNAPSHOT-tests.jar to my 
assembly using


 ...


bin

org.apache.juddi:juddi-client:jar
org.apache.juddi:uddi-tck:jar
org.apache.juddi:uddi-tck:test-jar
...

However when I try to add the source jar:
...


src
test

org.apache.juddi:juddi-client:jar:sources
org.apache.juddi:uddi-tck:jar:sources
org.apache.juddi:uddi-tck:test-jar:sources
...


Then the uddi-tck-3.2.0-SNAPSHOT-sources.jar is NOT picked up. I made 
sure we reference the source

and javadoc artifacts in the pom.xml:

  
org.apache.juddi
uddi-tck
${project.parent.version}
test-jar
sources

   
org.apache.juddi
uddi-tck
${project.parent.version}
javadoc
test-jar



Full pom and assembly.xml:
http://svn.apache.org/repos/asf/juddi/trunk/uddi-client-dist/pom.xml
http://svn.apache.org/repos/asf/juddi/trunk/uddi-client-dist/src/main/assembly/assembly.xml

When running with -X it says:

[DEBUG] Adding artifact: 
org.apache.juddi:uddi-tck:test-jar:sources:3.2.0-SNAPSHOT with file: 
/Users/kstam/.m2/repository/org/apache/juddi/uddi-tck/3.2.0-SNAPSHOT/uddi-tck-3.2.0-SNAPSHOT-sources.jar 
to assembly location: src/uddi-tck-3.2.0-SNAPSHOT-sources.jar.


so it seem to be adding the source *jar*, rather then the *test-jar*. 
eventhough it says it's going to add the *test-jar* version:


Adding artifact: org.apache.juddi:uddi-tck:test-jar:sources:3.2.0-SNAPSHOT


Does anyone has an idea what I'm doing wrong? Is this a bug?
Any help you can provide would be great.

Thx,

--Kurt


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