wwmm-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.ac.cam.ch.wwmm</groupId> <artifactId>wwmm-parent</artifactId> <version>4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>uk.ac.cam.ch.wwmm</groupId> <artifactId>wwmm-parent</artifactId> <version>4</version> <packaging>pom</packaging> <name>WWMM Parent POM</name> <description>Parent POM for Maven managed projects in the Unilever Centre for Molecular Science Informatics</description> <url>https://bitbucket.org/wwmm/wwmm-pom</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>https://bitbucket.org/wwmm/wwmm-pom/src</url> <connection>scm:hg:http://bitbucket.org/wwmm/wwmm-pom</connection> <developerConnection>scm:hg:https://bitbucket.org/wwmm/wwmm-pom</developerConnection> </scm> <developers> <developer> <id>ojd20</id> <name>Jim Downing</name> </developer> <developer> <id>sea36</id> <name>Sam Adams</name> </developer> <developer> <id>dmj30</id> <name>David Jessop</name> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <pluginManagement> <plugins> <!-- Use java 1.5 --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> <optimize>true</optimize> </configuration> </plugin> <!-- Include POM.xml in source JAR --> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <configuration> <includePom>true</includePom> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.7.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0</version> </plugin> </plugins> </pluginManagement> </build> </project>