Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > 4957d34e384581eb84e5c1f642032142 > files > 1

parboiled-1.0.2-3.mga3.src.rpm

<?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"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.parboiled</groupId>
  <artifactId>parboiled-project</artifactId>
  <packaging>pom</packaging>
  <version>1.0.2</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>