I'm using Maven 2 and maven-jar-plugin to build my jar.

I'd like to generate only a jar with a classifier. Is it possible?

In my example I'd like to generate only the myjar-another-1.0.jar but not myjar-1.0.jar.

After take a look at this question I tried to skip the default-jar. But this seems to work only with version 3 of Maven (haven't tried thou.

The parent is to do the

<modules>

Thanks all!

Here is the relevant piece of my pom.xml:

Also tried in the global configuration segment.

<project>
         <!-- Definition of the Parent (only an aggregator) -->     
    <build>
      <plugins>
         <!-- <artifactId>maven-bundle-plugin</artifactId> -->
         <!-- surefire -->
         <!-- <artifactId>maven-source-plugin</artifactId> -->
         <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <classifier>another</classifier>
            </configuration>
            <executions>
                <execution>
                    <id>test-jar</id>
                    <goals>
                        <goal>test-jar</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
     </plugins>
   </build>
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Just use it for the plugin element:

  <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <classifier>another</classifier>
        </configuration>
      </plugin>
  </plugins>
link|improve this answer
Sorry, is not working – ssedano Dec 2 '11 at 9:53
Works for me. Not working how? Maybe I don't understand the question? – kan Dec 2 '11 at 10:39
In my example I'd like to generate only the myjar-another-1.0.jar but not myjar-1.0.jar. What version? – ssedano Dec 2 '11 at 10:47
I'm using maven v2.2.1. I've added the plugin as in my answer into one of my projects and it's produced for me only myproj-0.0.1-another.jar What are you getting? – kan Dec 2 '11 at 10:51
I'm also getting the myjar-1.0.jar. It is possible to avoid it. @kan Thank you for your time! – ssedano Dec 2 '11 at 10:54
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.