You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Jacques Couzteau <li...@bitfaeule.net> on 2007/08/20 20:51:38 UTC

where to get xmldsig-1.0.jar

Hi,
I'm trying to build an existing spring framework applictaion. It's  
trying to download xmldsig-1.0.jar from here
	http://download.java.net/maven/1//javax.xml.crypto/jars/ 
xmldsig-1.0.jar and here
	http://repo1.maven.org/maven2/javax/xml/crypto/xmldsig/1.0/ 
xmldsig-1.0.jar

The jar is no-where to be found. Where can I get it?

I noticed a POM is available at
	http://repo1.maven.org/maven2/javax/xml/xmldsig/1.0/xmldsig-1.0.pom

But the jar is not there?


thanks for help.
	Jochen


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


Re: where to get xmldsig-1.0.jar

Posted by Jacques Couzteau <li...@bitfaeule.net>.
Great! Thanks Farrukh.	
	-j
On 20.08.2007, at 21:04, Farrukh Najmi wrote:

> Farrukh Najmi wrote:
>> Jacques Couzteau wrote:
>>> Hi,
>>> I'm trying to build an existing spring framework applictaion.  
>>> It's trying to download xmldsig-1.0.jar from here
>>>     http://download.java.net/maven/1//javax.xml.crypto/jars/ 
>>> xmldsig-1.0.jar and here
>>>     http://repo1.maven.org/maven2/javax/xml/crypto/xmldsig/1.0/ 
>>> xmldsig-1.0.jar
>>>
>>> The jar is no-where to be found. Where can I get it?
>>>
>>> I noticed a POM is available at
>>>     http://repo1.maven.org/maven2/javax/xml/xmldsig/1.0/ 
>>> xmldsig-1.0.pom
>>
>> Thats the one to get. You will need to fix your pom for correct  
>> artifactdid etc. as they have changed.
>> Best of luck.
>>
>
> On further examination the jar is missing there. As I recall I had  
> to manually install the jar in my local repo.
> Will let java.net folks know so they can fix this. Thanks.
>
> -- 
> Regards,
> Farrukh
>
> Web: http://www.wellfleetsoftware.com
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>


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


Re: where to get xmldsig-1.0.jar

Posted by Farrukh Najmi <fa...@wellfleetsoftware.com>.
Farrukh Najmi wrote:
> Jacques Couzteau wrote:
>> Hi,
>> I'm trying to build an existing spring framework applictaion. It's 
>> trying to download xmldsig-1.0.jar from here
>>     
>> http://download.java.net/maven/1//javax.xml.crypto/jars/xmldsig-1.0.jar 
>> and here
>>     
>> http://repo1.maven.org/maven2/javax/xml/crypto/xmldsig/1.0/xmldsig-1.0.jar 
>>
>>
>> The jar is no-where to be found. Where can I get it?
>>
>> I noticed a POM is available at
>>     http://repo1.maven.org/maven2/javax/xml/xmldsig/1.0/xmldsig-1.0.pom
>
> Thats the one to get. You will need to fix your pom for correct 
> artifactdid etc. as they have changed.
> Best of luck.
>

On further examination the jar is missing there. As I recall I had to 
manually install the jar in my local repo.
Will let java.net folks know so they can fix this. Thanks.

-- 
Regards,
Farrukh

Web: http://www.wellfleetsoftware.com



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


Re: where to get xmldsig-1.0.jar

Posted by Farrukh Najmi <fa...@wellfleetsoftware.com>.
Jacques Couzteau wrote:
> Hi,
> I'm trying to build an existing spring framework applictaion. It's 
> trying to download xmldsig-1.0.jar from here
>     http://download.java.net/maven/1//javax.xml.crypto/jars/xmldsig-1.0.jar 
> and here
>     http://repo1.maven.org/maven2/javax/xml/crypto/xmldsig/1.0/xmldsig-1.0.jar 
>
>
> The jar is no-where to be found. Where can I get it?
>
> I noticed a POM is available at
>     http://repo1.maven.org/maven2/javax/xml/xmldsig/1.0/xmldsig-1.0.pom

Thats the one to get. You will need to fix your pom for correct 
artifactdid etc. as they have changed.
Best of luck.

-- 
Regards,
Farrukh

Web: http://www.wellfleetsoftware.com



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


Re: where to get xmldsig-1.0.jar

Posted by swapnil barwat <sw...@gmail.com>.
if you are using artifactory then you can by using license-check. Its
available in commercial version.

On Wed, Oct 12, 2016 at 11:02 PM, Libby_li <li...@163.com> wrote:

> Excuse me, do you know the license of xmldsig-1.0.jar?
> Thanks~
>
>
>
> --
> View this message in context: http://maven.40175.n5.nabble.
> com/where-to-get-xmldsig-1-0-jar-tp92435p5883040.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 
regards..
Swapnil Barwat

Re: where to get xmldsig-1.0.jar

Posted by Stian Soiland-Reyes <st...@apache.org>.
Are you sure you need xmldsig?

http://docs.oracle.com/javase/6/docs/api/javax/xml/crypto/dsig/XMLSignature.html

and friends

has been part of JDK since 1.6, and the OpenJDK includes the
org.jcp.xml.dsig implementation.

You can also look at the Apache Santuario implementation which is
licensed as Apache 2.0:

https://santuario.apache.org/Java/api/org/apache/jcp/xml/dsig/internal/dom/DOMXMLSignature.html
https://santuario.apache.org/

On 13 October 2016 at 04:02, Libby_li <li...@163.com> wrote:
> Excuse me, do you know the license of xmldsig-1.0.jar?
> Thanks~
>
>
>
> --
> View this message in context: http://maven.40175.n5.nabble.com/where-to-get-xmldsig-1-0-jar-tp92435p5883040.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>



-- 
Stian Soiland-Reyes
http://orcid.org/0000-0001-9842-9718

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


Re: where to get xmldsig-1.0.jar

Posted by Libby_li <li...@163.com>.
Excuse me, do you know the license of xmldsig-1.0.jar?
Thanks~



--
View this message in context: http://maven.40175.n5.nabble.com/where-to-get-xmldsig-1-0-jar-tp92435p5883040.html
Sent from the Maven - Users mailing list archive at Nabble.com.

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