openCage
openCage

Reputation: 2775

how to control the pom.xml inside jar built by maven?

When maven builds a jar it places a pom.xml at META-INF///pom.xml. This is the original pom of the artifact. No variables are expanded or inherited and no inherited dependencies are listed. This makes the information of the production jar dependent on the build environment.

How can the pom inside the jar be configured ? Best would be some configuration of the maven-jar-plugin.

Upvotes: 9

Views: 4147

Answers (1)

Romain Linsolas
Romain Linsolas

Reputation: 81667

I had a similar requirement, as I wanted to get all the information that belongs to the parent pom.xml. In others words, I wanted to have, in addition to the "raw" pom.xml, the effective pom inside the JAR generated.

The idea is to use the help:effective-pom plugin and goal during the generation of the JAR, and put it with the pom.xml. This is done with this configuration:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-help-plugin</artifactId>
    <version>2.1.1</version>
    <executions>
        <execution>
            <phase>generate-resources</phase>
            <goals>
                <goal>effective-pom</goal>
            </goals>
            <configuration>
                <output>${project.build.outputDirectory}/META-INF/maven/${project.groupId}/${project.artifactId}/effective-pom.xml</output>
            </configuration>
        </execution>
    </executions>
</plugin>

(source)

Upvotes: 8

Related Questions