]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.tests.integration/pom.xml
Move platform to only work with JDK's >= 11
[simantics/platform.git] / tests / org.simantics.tests.integration / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5
6     <parent>
7         <groupId>org.simantics</groupId>
8         <artifactId>org.simantics.root.tests</artifactId>
9         <version>1.0.0-SNAPSHOT</version>
10     </parent>
11
12     <artifactId>org.simantics.tests.integration</artifactId>
13     <version>1.0.0-SNAPSHOT</version>
14     <packaging>eclipse-test-plugin</packaging>
15
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.eclipse.tycho</groupId>
20                 <artifactId>target-platform-configuration</artifactId>
21                     <configuration>
22                         <target>
23                             <artifact>
24                                 <groupId>org.simantics</groupId>
25                                 <artifactId>org.simantics.sdk.build.targetdefinition</artifactId>
26                                 <version>1.0.0-SNAPSHOT</version>
27                             </artifact>
28                         </target>
29                     <dependency-resolution>
30                         <extraRequirements>
31                             <requirement>
32                                 <type>eclipse-feature</type>
33                                 <id>org.simantics.sdk</id>
34                                 <versionRange>0.0.0</versionRange>
35                             </requirement>
36                             <requirement>
37                                 <type>eclipse-feature</type>
38                                 <id>org.simantics.tests.modelled.feature</id>
39                                 <versionRange>0.0.0</versionRange>
40                             </requirement>
41                             <requirement>
42                                 <type>eclipse-feature</type>
43                                 <id>org.simantics.modeling</id>
44                                 <versionRange>0.0.0</versionRange>
45                             </requirement>
46                         </extraRequirements>
47                     </dependency-resolution>
48                 </configuration>
49             </plugin>
50             <plugin>
51                 <groupId>org.eclipse.tycho</groupId>
52                 <artifactId>tycho-surefire-plugin</artifactId>
53                 <version>${tycho.version}</version>
54                 <configuration>
55                     <application>org.eclipse.pde.junit.runtime.coretestapplication</application>
56                     <testClass>org.simantics.tests.integration.SimanticsIntegrationTestSuite</testClass>
57                     <forkMode>once</forkMode>
58                     <argLine>-Xms2512m -Xmx2512m</argLine>
59                 </configuration>
60             </plugin>
61         </plugins>
62     </build>
63
64 </project>