Files
2018-06-14 10:43:52 -07:00

172 lines
6.1 KiB
XML
Executable File

<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>com.automatak.render</groupId>
<artifactId>opendnp3-generation</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>opendnp3-generation</name>
<url>www.automatak.com/opendnp3</url>
<description>Code generator for opendnp3 project</description>
<modules>
<module>render</module>
<module>dnp3</module>
</modules>
<properties>
<junit.version>4.10</junit.version>
<maven-license-plugin.version>1.9.0</maven-license-plugin.version>
<maven-scala.plugin.version>3.1.3</maven-scala.plugin.version>
<maven-source-plugin.version>2.1.2</maven-source-plugin.version>
<maven-bundle.version>2.1.0</maven-bundle.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scala.version>2.11.8</scala.version>
<surefire-plugin.version>2.12.4</surefire-plugin.version>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/automatak/dnp3.git</url>
<connection></connection>
</scm>
<developers>
<developer>
<id>jadamcrain</id>
<name>Adam Crain</name>
<email>jadamcrain@automatak.com</email>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>${maven-license-plugin.version}</version>
<configuration>
<strictCheck>true</strictCheck>
<failIfMissing>true</failIfMissing>
<aggregate>true</aggregate>
<header>AUTOMATAK_FILE_HEADER</header>
<mapping>
<hpp>JAVADOC_STYLE</hpp>
<application>JAVADOC_STYLE</application>
</mapping>
<includes>
<include>**/*.scala</include>
</includes>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>process-sources</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${maven-scala.plugin.version}</version>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>testCompile</id>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-feature</arg>
<arg>-language:implicitConversions</arg>
<arg>-deprecation</arg>
<arg>-target:jvm-1.6</arg>
<arg>-Ywarn-adapted-args</arg>
</args>
<jvmArgs>
<jvmArg>-Xmx1024m</jvmArg>
</jvmArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<includes>
<include>**/*.class</include>
</includes>
<reportFormat>brief</reportFormat>
<useFile>false</useFile>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.11</artifactId>
<version>2.2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>