|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<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" |
3 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 1 | +<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"> |
4 | 2 | <modelVersion>4.0.0</modelVersion>
|
5 |
| - <parent> |
6 |
| - <artifactId>WALA</artifactId> |
7 |
| - <groupId>com.ibm.wala</groupId> |
8 |
| - <version>1.3.10-SNAPSHOT</version> |
9 |
| - </parent> |
| 3 | + <groupId>com.ibm.wala</groupId> |
10 | 4 | <artifactId>com.ibm.wala.memsat.test</artifactId>
|
11 |
| - <packaging>eclipse-plugin</packaging> |
12 |
| - <version>1.0.0-SNAPSHOT</version> |
| 5 | + <version>0.0.1-SNAPSHOT</version> |
| 6 | + <name>com.ibm.wala.memsat.test</name> |
| 7 | + <description>MemSAT tests</description> |
13 | 8 | <build>
|
| 9 | + <testSourceDirectory>src</testSourceDirectory> |
| 10 | + <resources> |
| 11 | + <resource> |
| 12 | + <directory>testdata</directory> |
| 13 | + </resource> |
| 14 | + </resources> |
14 | 15 | <plugins>
|
| 16 | + <plugin> |
| 17 | + <artifactId>maven-compiler-plugin</artifactId> |
| 18 | + <version>3.1</version> |
| 19 | + <configuration> |
| 20 | + <source>1.8</source> |
| 21 | + <target>1.8</target> |
| 22 | + </configuration> |
| 23 | + </plugin> |
15 | 24 | <plugin>
|
16 | 25 | <groupId>org.apache.maven.plugins</groupId>
|
17 | 26 | <artifactId>maven-surefire-plugin</artifactId>
|
18 |
| - <executions> |
19 |
| - <execution> |
20 |
| - <id>test</id> |
21 |
| - <phase>test</phase> |
22 |
| - <configuration> |
23 |
| - <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory> |
24 |
| - <argLine>-Djava.library.path=${project.build.outputDirectory}/jni/darwin_x86_64 -ea</argLine> |
25 |
| - <redirectTestOutputToFile>true</redirectTestOutputToFile> |
26 |
| - </configuration> |
27 |
| - <goals> |
28 |
| - <goal>test</goal> |
29 |
| - </goals> |
30 |
| - </execution> |
31 |
| - </executions> |
| 27 | + <version>2.20</version> |
| 28 | + <configuration> |
| 29 | + <forkMode>once</forkMode> |
| 30 | + <argLine>-Djava.library.path=${basedir}/../com.ibm.wala.memsat/jni/darwin_x86_64: ${basedir}/../com.ibm.wala.memsat/jni/linux_x86_64</argLine> |
| 31 | + <workingDirectory>${basedir}/../com.ibm.wala.memsat.testdata</workingDirectory> |
| 32 | + <includes> |
| 33 | + <include>**/*Tests.java</include> |
| 34 | + </includes> |
| 35 | + </configuration> |
32 | 36 | </plugin>
|
33 | 37 | </plugins>
|
| 38 | + <pluginManagement> |
| 39 | + <plugins> |
| 40 | + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 41 | + <plugin> |
| 42 | + <groupId>org.eclipse.m2e</groupId> |
| 43 | + <artifactId>lifecycle-mapping</artifactId> |
| 44 | + <version>1.0.0</version> |
| 45 | + <configuration> |
| 46 | + <lifecycleMappingMetadata> |
| 47 | + <pluginExecutions> |
| 48 | + <pluginExecution> |
| 49 | + <pluginExecutionFilter> |
| 50 | + <groupId> |
| 51 | + org.apache.maven.plugins |
| 52 | + </groupId> |
| 53 | + <artifactId> |
| 54 | + maven-antrun-plugin |
| 55 | + </artifactId> |
| 56 | + <versionRange>[1.8,)</versionRange> |
| 57 | + <goals> |
| 58 | + <goal>run</goal> |
| 59 | + </goals> |
| 60 | + </pluginExecutionFilter> |
| 61 | + <action> |
| 62 | + <ignore></ignore> |
| 63 | + </action> |
| 64 | + </pluginExecution> |
| 65 | + </pluginExecutions> |
| 66 | + </lifecycleMappingMetadata> |
| 67 | + </configuration> |
| 68 | + </plugin> |
| 69 | + </plugins> |
| 70 | + </pluginManagement> |
34 | 71 | </build>
|
35 | 72 | <dependencies>
|
| 73 | + <dependency> |
| 74 | + <groupId>kodkod</groupId> |
| 75 | + <artifactId>kodkod</artifactId> |
| 76 | + <version>2.0</version> |
| 77 | + <scope>system</scope> |
| 78 | + <systemPath>${project.basedir}/../com.ibm.wala.memsat/lib/kodkod.jar</systemPath> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>com.ibm.wala</groupId> |
| 82 | + <artifactId>com.ibm.wala.memsat</artifactId> |
| 83 | + <version>0.0.1-SNAPSHOT</version> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>com.ibm.wala</groupId> |
| 87 | + <artifactId>com.ibm.wala.memsat.testdata</artifactId> |
| 88 | + <version>0.0.1-SNAPSHOT</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>com.ibm.wala</groupId> |
| 92 | + <artifactId>com.ibm.wala.cast.js.rhino</artifactId> |
| 93 | + <version>1.4.4-SNAPSHOT</version> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>com.ibm.wala</groupId> |
| 97 | + <artifactId>com.ibm.wala.cast.java.ecj</artifactId> |
| 98 | + <version>1.4.4-SNAPSHOT</version> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>com.ibm.wala</groupId> |
| 102 | + <artifactId>com.ibm.wala.cast.java</artifactId> |
| 103 | + <version>1.4.4-SNAPSHOT</version> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>com.ibm.wala</groupId> |
| 107 | + <artifactId>com.ibm.wala.ide</artifactId> |
| 108 | + <version>1.4.4-SNAPSHOT</version> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>com.ibm.wala</groupId> |
| 112 | + <artifactId>com.ibm.wala.ide.jdt</artifactId> |
| 113 | + <version>1.4.4-SNAPSHOT</version> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>com.ibm.wala</groupId> |
| 117 | + <artifactId>com.ibm.wala.cast.js</artifactId> |
| 118 | + <version>1.4.4-SNAPSHOT</version> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>com.ibm.wala</groupId> |
| 122 | + <artifactId>com.ibm.wala.cast</artifactId> |
| 123 | + <version>1.4.4-SNAPSHOT</version> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>com.ibm.wala</groupId> |
| 127 | + <artifactId>com.ibm.wala.core</artifactId> |
| 128 | + <version>1.4.4-SNAPSHOT</version> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>com.ibm.wala</groupId> |
| 132 | + <artifactId>com.ibm.wala.shrike</artifactId> |
| 133 | + <version>1.4.4-SNAPSHOT</version> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>com.ibm.wala</groupId> |
| 137 | + <artifactId>com.ibm.wala.util</artifactId> |
| 138 | + <version>1.4.4-SNAPSHOT</version> |
| 139 | + </dependency> |
| 140 | + <dependency> |
| 141 | + <groupId>com.ibm.wala</groupId> |
| 142 | + <artifactId>com.ibm.wala.cast.test</artifactId> |
| 143 | + <version>1.4.4-SNAPSHOT</version> |
| 144 | + </dependency> |
| 145 | + <dependency> |
| 146 | + <groupId>com.ibm.wala</groupId> |
| 147 | + <artifactId>com.ibm.wala.core.tests</artifactId> |
| 148 | + <version>1.4.4-SNAPSHOT</version> |
| 149 | + </dependency> |
| 150 | + <dependency> |
| 151 | + <groupId>org.eclipse.core</groupId> |
| 152 | + <artifactId>org.eclipse.core.resources</artifactId> |
| 153 | + <version>3.7.100</version> |
| 154 | + </dependency> |
| 155 | + <dependency> |
| 156 | + <groupId>org.eclipse.jdt</groupId> |
| 157 | + <artifactId>org.eclipse.jdt.core</artifactId> |
| 158 | + <version>3.12.3</version> |
| 159 | + </dependency> |
36 | 160 | <dependency>
|
37 | 161 | <groupId>junit</groupId>
|
38 | 162 | <artifactId>junit</artifactId>
|
39 |
| - <version>4.11</version> |
| 163 | + <version>4.12</version> |
40 | 164 | <scope>test</scope>
|
41 | 165 | </dependency>
|
42 |
| - </dependencies> |
| 166 | + </dependencies> |
43 | 167 | </project>
|
0 commit comments