| <?xml version="1.0" encoding="UTF-8"?> |
| <project |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.eclipse.epsilon</groupId> |
| <artifactId>tests</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| </parent> |
| |
| <groupId>org.eclipse.epsilon</groupId> |
| <artifactId>org.eclipse.epsilon.test.unit</artifactId> |
| <version>1.6.0-SNAPSHOT</version> |
| <packaging>eclipse-test-plugin</packaging> |
| <dependencies> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>1.0.13</version> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-library</artifactId> |
| <version>1.3</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.12</version> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| <build> |
| <testSourceDirectory>${project.basedir}/src</testSourceDirectory> |
| <testOutputDirectory>${project.basedir}/target/classes</testOutputDirectory> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>3.0.0-M3</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>3.0.0-M3</version> |
| <configuration> |
| <includes> |
| <include>EpsilonTestSuite.java</include> |
| </includes> |
| <argLine>-Xmx6144m</argLine> |
| </configuration> |
| </plugin> |
| |
| </plugins> |
| </build> |
| </project> |