DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Private Remote Maven Repository With Artipie
  • How to Publish Artifacts to Maven Central
  • OpenAPI From Code With Spring and Java: A Recipe for Your CI
  • Securing CI/CD Pipelines Against Supply Chain Attacks: Why Artifacts and Dependencies Matter More Than Ever

Trending

  • Why DDoS Protection Is an Architectural Decision for Developers
  • Edge Computing in Utility IoT: Two Architecture Patterns That Actually Work
  • How to Format Articles for DZone
  • Master-Class: Understanding Database Replication (Single, Multi, and Leaderless)
  1. DZone
  2. Coding
  3. Java
  4. Creating Maven Artifacts From a jar File

Creating Maven Artifacts From a jar File

Here is a step-by-step guide for generating Maven artifacts from any third-party jar.

By 
Shirish Bari user avatar
Shirish Bari
·
Sep. 28, 16 · Tutorial
Likes (7)
Comment
Save
Tweet
Share
27.6K Views

Join the DZone community and get the full member experience.

Join For Free

Today, we're going to create an artifact from mailapi.jar with version 1.4.5 and use it in our Maven project. This article will guide you through the steps to make that happen.

Background

While creating Maven projects, we often come across a scenario when we have to import a jar from local repositories instead of Maven.

The reasons could be: 

  • The jar was created locally, and it’s not present in the Maven repository.
  • We want to use a specific version of the jar, maybe because of:
    • An upgrade that can be inconsistent with other dependencies.
    • An upgrade that could break functionality if it’s written with assumptions made for the current version.

We need to find an answer to the following questions:

  1. How can we create a Maven artifact from a jar?

  2. How can we configure this artifact in pom.xml?

Steps

  1. Create a Maven artifact from a jar

 Maven's Install Plugin can help us generate an artifact. Run:

mvn install:install-file -Dfile=<path to jar>\mailapi.jar 
-DgroupId=com.study  
-DartifactId=mailapi 
-Dversion=1.4.5  
-Dpackaging=jar  
-DcreateChecksum=true

            

Maven Install command

At the C:\Users\<userName>\.m2\repository\com\study\mailapi\ directory, you can see generated artifacts:

Artifacts

A parameter createChecksum=true creates integrity checksums (MD5, SHA-1) for the artifacts during installation.

2. Create a repo folder in <project base directory>.

3. First, copy the com folder from C:\Users\<userName>\.m2\repository\ to <project base directory>/repo.

4. Configure pom.xml to look up the local repository for specific jars.

pom.xml

Remember to use System Scope for jars referred from local repositories.

I hope this article will be helpful.

Artifact (UML) JAR (file format) Apache Maven

Opinions expressed by DZone contributors are their own.

Related

  • Private Remote Maven Repository With Artipie
  • How to Publish Artifacts to Maven Central
  • OpenAPI From Code With Spring and Java: A Recipe for Your CI
  • Securing CI/CD Pipelines Against Supply Chain Attacks: Why Artifacts and Dependencies Matter More Than Ever

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook