blob: 9ffb22434153eaf5c7fb1549688b1a59d0b5b6bf [file] [log] [blame]
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.isis.archetype</groupId>
<artifactId>helloworld-archetype</artifactId>
<version>1.16.1</version>
<packaging>maven-archetype</packaging>
<name>helloworld-archetype</name>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>2.2</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<description>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.</description>
<url>https://github.com/incodehq/incode-build/helloworld</url>
<developers>
<developer>
<id>danhaywood</id>
<name>Dan Haywood</name>
<email>dan@haywood-associates.co.uk</email>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:incodehq/incode-build.git/helloworld</connection>
<developerConnection>scm:git:git@github.com:incodehq/incode-build.git/helloworld</developerConnection>
<url>git@github.com:incodehq/incode-build.git/helloworld</url>
<tag>helloworld-archetype-1.16.1</tag>
</scm>
<parent>
<groupId>org.apache.isis.core</groupId>
<artifactId>isis</artifactId>
<version>1.16.1</version>
<relativePath>../../../core/pom.xml</relativePath>
</parent>
<properties>
<archetype.test.skip>true</archetype.test.skip>
</properties>
</project>