You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Wim Deblauwe <wi...@gmail.com> on 2006/05/16 11:23:55 UTC

[m2] Jar creation on pom packaging

Hi,

I have a module that only has a pom.xml in it. It should serve as a parent
project for my other projects. I have set the packinging to pom,however, a
jar file is created.

How can I avoid this, but still have  a parent pom that sets all the default
compiler options, reports, that I want for my java modules?

regards,

Wim

This is my pom:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <parent>
        <groupId>com.barcoview.mis.utils.build</groupId>
        <artifactId>build-base</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.barcoview.mis.utils.build</groupId>
    <artifactId>build-java</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-jar-plugin</artifactId>
               <executions>
                 <execution>
                   <goals>
                     <goal>test-jar</goal>
                   </goals>
                 </execution>
               </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <includes>
                        <include implementation="java.lang.String
">**/*Test.*</include>
                    </includes>
                    <excludes>
                        <exclude implementation="java.lang.String
">**/integration/**/*.*</exclude>
                        <exclude implementation="java.lang.String
">**/development/**/*.*</exclude>
                    </excludes>
                </configuration>
             </plugin>
        </plugins>
    </build>
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                   <artifactId>changelog-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-pmd-plugin</artifactId>
                <configuration>
                    <targetJdk>1.5</targetJdk>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-clover-plugin</artifactId>
                <configuration>

<licenseFile>//bvwsrv01/bds_soft/Technology/Java/Installers/Libraries/clover/clover.license</licenseFile>
                           <jdk>1.5</jdk>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>surefire-report-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </reporting>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

Re: RE : [m2] Jar creation on pom packaging

Posted by Wim Deblauwe <wi...@gmail.com>.
cool, that works!

2006/5/16, Olivier Lamy <ol...@accor.com>:
>
> Try with pluginManagement in the parent pom.
> - Olivier
>
> -----Message d'origine-----
> De : Wim Deblauwe [mailto:wim.deblauwe@gmail.com]
> Envoyé : mardi 16 mai 2006 11:24
> À : Maven Users List
> Objet : [m2] Jar creation on pom packaging
>
>
> Hi,
>
> I have a module that only has a pom.xml in it. It should serve as a
> parent project for my other projects. I have set the packinging to
> pom,however, a jar file is created.
>
> How can I avoid this, but still have  a parent pom that sets all the
> default compiler options, reports, that I want for my java modules?
>
> regards,
>
> Wim
>
> This is my pom:
>
> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="
> http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
> http://maven.apache.org/POM/4.0.0
> http://maven.apache.org/maven-v4_0_0.xsd">
>     <parent>
>         <groupId>com.barcoview.mis.utils.build</groupId>
>         <artifactId>build-base</artifactId>
>         <version>1.0-SNAPSHOT</version>
>     </parent>
>     <modelVersion>4.0.0</modelVersion>
>     <groupId>com.barcoview.mis.utils.build</groupId>
>     <artifactId>build-java</artifactId>
>     <version>1.0-SNAPSHOT</version>
>     <packaging>pom</packaging>
>     <build>
>         <plugins>
>             <plugin>
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-compiler-plugin</artifactId>
>                 <configuration>
>                     <source>1.5</source>
>                     <target>1.5</target>
>                 </configuration>
>             </plugin>
>             <plugin>
>                <groupId>org.apache.maven.plugins</groupId>
>                <artifactId>maven-jar-plugin</artifactId>
>                <executions>
>                  <execution>
>                    <goals>
>                      <goal>test-jar</goal>
>                    </goals>
>                  </execution>
>                </executions>
>             </plugin>
>             <plugin>
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-surefire-plugin</artifactId>
>                 <configuration>
>                     <includes>
>                         <include implementation="java.lang.String
> ">**/*Test.*</include>
>                     </includes>
>                     <excludes>
>                         <exclude implementation="java.lang.String
> ">**/integration/**/*.*</exclude>
>                         <exclude implementation="java.lang.String
> ">**/development/**/*.*</exclude>
>                     </excludes>
>                 </configuration>
>              </plugin>
>         </plugins>
>     </build>
>     <reporting>
>         <plugins>
>             <plugin>
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-javadoc-plugin</artifactId>
>             </plugin>
>             <plugin>
>                 <groupId>org.codehaus.mojo</groupId>
>                    <artifactId>changelog-maven-plugin</artifactId>
>             </plugin>
>             <plugin>
>                 <artifactId>maven-pmd-plugin</artifactId>
>                 <configuration>
>                     <targetJdk>1.5</targetJdk>
>                 </configuration>
>             </plugin>
>             <plugin>
>                 <artifactId>maven-clover-plugin</artifactId>
>                 <configuration>
>
> <licenseFile>//bvwsrv01/bds_soft/Technology/Java/Installers/Libraries/cl
> over/clover.license</licenseFile>
>                            <jdk>1.5</jdk>
>                 </configuration>
>             </plugin>
>             <plugin>
>                 <groupId>org.codehaus.mojo</groupId>
>                 <artifactId>surefire-report-maven-plugin</artifactId>
>             </plugin>
>         </plugins>
>     </reporting>
>     <dependencies>
>         <dependency>
>             <groupId>junit</groupId>
>             <artifactId>junit</artifactId>
>             <version>3.8.1</version>
>             <scope>test</scope>
>         </dependency>
>     </dependencies>
> </project>
>
>
>
> This e-mail, any attachments and the information contained therein ("this
> message") are confidential and intended solely for the use of the
> addressee(s). If you have received this message in error please send it back
> to the sender and delete it. Unauthorized publication, use, dissemination or
> disclosure of this message, either in whole or in part is strictly
> prohibited.
>
> --------------------------------------------------------------------------------------------------------------
> Ce message électronique et tous les fichiers joints ainsi que  les
> informations contenues dans ce message ( ci après "le message" ), sont
> confidentiels et destinés exclusivement à l'usage de la  personne à laquelle
> ils sont adressés. Si vous avez reçu ce message par erreur, merci  de le
> renvoyer à son émetteur et de le détruire. Toutes diffusion, publication,
> totale ou partielle ou divulgation sous quelque forme que se soit non
> expressément autorisées de ce message, sont interdites.
>
> -------------------------------------------------------------------------------------------------------------
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

RE : [m2] Jar creation on pom packaging

Posted by Olivier Lamy <ol...@accor.com>.
Try with pluginManagement in the parent pom.
- Olivier

-----Message d'origine-----
De : Wim Deblauwe [mailto:wim.deblauwe@gmail.com] 
Envoyé : mardi 16 mai 2006 11:24
À : Maven Users List
Objet : [m2] Jar creation on pom packaging


Hi,

I have a module that only has a pom.xml in it. It should serve as a
parent project for my other projects. I have set the packinging to
pom,however, a jar file is created.

How can I avoid this, but still have  a parent pom that sets all the
default compiler options, reports, that I want for my java modules?

regards,

Wim

This is my pom:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
    <parent>
        <groupId>com.barcoview.mis.utils.build</groupId>
        <artifactId>build-base</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.barcoview.mis.utils.build</groupId>
    <artifactId>build-java</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-jar-plugin</artifactId>
               <executions>
                 <execution>
                   <goals>
                     <goal>test-jar</goal>
                   </goals>
                 </execution>
               </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <includes>
                        <include implementation="java.lang.String
">**/*Test.*</include>
                    </includes>
                    <excludes>
                        <exclude implementation="java.lang.String
">**/integration/**/*.*</exclude>
                        <exclude implementation="java.lang.String
">**/development/**/*.*</exclude>
                    </excludes>
                </configuration>
             </plugin>
        </plugins>
    </build>
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                   <artifactId>changelog-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-pmd-plugin</artifactId>
                <configuration>
                    <targetJdk>1.5</targetJdk>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-clover-plugin</artifactId>
                <configuration>

<licenseFile>//bvwsrv01/bds_soft/Technology/Java/Installers/Libraries/cl
over/clover.license</licenseFile>
                           <jdk>1.5</jdk>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>surefire-report-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </reporting>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>



This e-mail, any attachments and the information contained therein ("this message") are confidential and intended solely for the use of the addressee(s). If you have received this message in error please send it back to the sender and delete it. Unauthorized publication, use, dissemination or disclosure of this message, either in whole or in part is strictly prohibited.
--------------------------------------------------------------------------------------------------------------
Ce message électronique et tous les fichiers joints ainsi que  les informations contenues dans ce message ( ci après "le message" ), sont confidentiels et destinés exclusivement à l'usage de la  personne à laquelle ils sont adressés. Si vous avez reçu ce message par erreur, merci  de le renvoyer à son émetteur et de le détruire. Toutes diffusion, publication, totale ou partielle ou divulgation sous quelque forme que se soit non expressément autorisées de ce message, sont interdites.
-------------------------------------------------------------------------------------------------------------


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