0

i have my Java application with maven distribution, and i need to create check sum e pom file for the jar in my repository.

I use Net-Beans to develop. Can someone help me?

  • What do you need this for? Are you referring to deployment to a remote artifact repository manager (such as Nexus, Artifactory, Archiva)? If so, then the checkums will be generated for you once you execute `mvn deploy`. (Of course, you will need to have proper `settings.xml` and `` set up in your `pom.xml`. – carlspring Jun 11 '15 at 10:09

1 Answers1

0

I use Apache ivy. Ivy understands how to download dependencies from Maven repositories and it can also be configured to publish artifacts there as well:

how to publish 3rdparty artifacts with ivy and nexus

It's an approach worth exploring if your looking for a pure ANT solution. You should also consider simply calling Maven to publish the jar as well. It has the ability to generate a POM on the fly.

Upload artifacts to Nexus, without Maven

Community
  • 1
  • 1
Mark O'Connor
  • 76,015
  • 10
  • 139
  • 185