<?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">
<parent>
<groupId>uk.org.retep</groupId>
<artifactId>retepMicroKernel</artifactId>
<version>9.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>uk.org.retep.microkernel</groupId>
<artifactId>module</artifactId>
<version>9.10</version>
<packaging>jar</packaging>
<name>retepMicroKernel Module</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<!--
<version>2.0.2</version>
-->
<configuration>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>
|