parboiled/pom.xml
2020-02-14 15:25:51 +08:00

40 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- This is a dummy POM added just to ease building in the RPM platforms: -->
<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>
<groupId>org.parboiled</groupId>
<artifactId>parboiled-project</artifactId>
<packaging>pom</packaging>
<version>@VERSION@</version>
<modules>
<!-- These are not all the modules, only those that we can currently build: -->
<module>parboiled-core</module>
<module>parboiled-java</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
<argLine>-Xmx512m</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>