archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
This module defines a standard parent POM to use for various Incode applications and modules.
Its primary purpose is to make it easy to use a set up maven mixins (https://github.com/odavid/maven-plugins)
within child POMs. Specifically this means locking down the versions of plugins using pluginManagement.
It does NOT define any mixins for Apache Isis.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <parent> <groupId>org.incode</groupId> <artifactId>incode-build</artifactId> <version>7</version> </parent> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <name>Apache Isis App - SimpleApp Parent</name> <packaging>pom</packaging> <properties> <revision>${version}</revision> <isis.version>2.0.0-M1</isis.version> <lombok.version>[1.18,)</lombok.version> <compiler-plugin.source>1.8</compiler-plugin.source> <compiler-plugin.target>1.8</compiler-plugin.target> <compiler-plugin.compilerArgument>-parameters</compiler-plugin.compilerArgument> <datanucleus-core.version>5.1.6</datanucleus-core.version> <hsqldb.version>2.3.4</hsqldb.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <plugins> <plugin> <groupId>com.github.odavid.maven.plugins</groupId> <artifactId>mixin-maven-plugin</artifactId> <version>0.1-alpha-39</version> <extensions>true</extensions> <configuration> <mixins> <mixin> <groupId>com.danhaywood.mavenmixin</groupId> <artifactId>standard</artifactId> </mixin> </mixins> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.0.0</version> <configuration> <updatePomFile>true</updatePomFile> <pomElements> <dependencyManagement>resolve</dependencyManagement> <dependencies>resolve</dependencies> </pomElements> </configuration> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.isis.core</groupId> <artifactId>isis</artifactId> <version>${isis.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>${groupId}</groupId> <artifactId>${rootArtifactId}-module-simple</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${groupId}</groupId> <artifactId>${rootArtifactId}-module-simple</artifactId> <version>${project.version}</version> <type>test-jar</type> </dependency> <dependency> <groupId>${groupId}</groupId> <artifactId>${rootArtifactId}-application</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${groupId}</groupId> <artifactId>${rootArtifactId}-webapp</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> </dependencies> <profiles> <profile> <id>m2e</id> <activation> <property> <name>m2e.version</name> </property> </activation> <build> <directory>target-ide</directory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${compiler-plugin.source}</source> <target>${compiler-plugin.target}</target> <compilerArgument>${compiler-plugin.compilerArgument}</compilerArgument> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>