Skip to content

Instantly share code, notes, and snippets.

@carlwilson
Created October 22, 2013 23:37
Show Gist options
  • Save carlwilson/7110058 to your computer and use it in GitHub Desktop.
Save carlwilson/7110058 to your computer and use it in GitHub Desktop.
SCAPE Project Maven Parent pom.xml.
<?xml version="1.0"?>
<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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>eu.scape-project</groupId>
<artifactId>scape-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>SCAPE Project Parent POM</name>
<organization>
<name>The SCAPE Consortium</name>
<url>http://scape-project.eu</url>
</organization>
<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>
<inceptionYear>2010</inceptionYear>
<ciManagement>
<system>Jenkins, hosted by OPF</system>
<url>http://jenkins.opf-labs.org</url>
</ciManagement>
<scm>
<url>http://github.com/openplanets</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
</properties>
<dependencies>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
<configuration>
<strictCheck>true</strictCheck>
<failIfMissing>true</failIfMissing>
<properties>
<holder>${project.organization.name}</holder>
<year>${project.inceptionYear} - ${maven.build.timestamp}</year>
<contact>office@scape-project.eu</contact>
</properties>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment