Project multi-module main pom.xml: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "<pre> </pre>")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<pre>
<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/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <name>User-Friendly-Name-That-May-Include-Spaces Library</name>
    <parent>
        <groupId>io.novaordis.groupId</groupId>
        <artifactId>artifactId-root</artifactId>
        <version>1.0.0-SNAPSHOT-1</version>
    </parent>
    <artifactId>artifactId</artifactId>
    <packaging>jar</packaging>
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>
</project>
</pre>
</pre>

Latest revision as of 18:13, 28 April 2017

<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>User-Friendly-Name-That-May-Include-Spaces Library</name>

    <parent>
        <groupId>io.novaordis.groupId</groupId>
        <artifactId>artifactId-root</artifactId>
        <version>1.0.0-SNAPSHOT-1</version>
    </parent>

    <artifactId>artifactId</artifactId>
    <packaging>jar</packaging>

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

</project>