Gld Extension Main Module pom.xml: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "<pre> <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/PO...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
=Internal=
* [[Gld_Extension_Development#New_Extension|gld Extension Development]]
=Template=
<pre>
<pre>
<project xmlns="http://maven.apache.org/POM/4.0.0"
<project xmlns="http://maven.apache.org/POM/4.0.0"
Line 9: Line 15:


     <parent>
     <parent>
         <groupId>io.novaordis.gld.extensions.jboss-datagrid-7</groupId>
         <groupId>io.novaordis.gld.extensions.jboss-datagrid</groupId>
         <artifactId>jboss-datagrid-7-gld-extension</artifactId>
         <artifactId>jboss-datagrid-7-root</artifactId>
         <version>1.0.0-SNAPSHOT-24</version>
         <version>1.0.0-SNAPSHOT-24</version>
     </parent>
     </parent>

Latest revision as of 21:13, 19 January 2017

Internal

Template

<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">

    <modelVersion>4.0.0</modelVersion>

    <name>GLD Extension for JBoss Data Grid 7 Integration Library</name>

    <parent>
        <groupId>io.novaordis.gld.extensions.jboss-datagrid</groupId>
        <artifactId>jboss-datagrid-7-root</artifactId>
        <version>1.0.0-SNAPSHOT-24</version>
    </parent>

    <artifactId>jboss-datagrid-7</artifactId>
    <packaging>jar</packaging>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>

</project>