aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorRncLsn <rnc.lsn@gmail.com>2015-06-04 18:27:28 +0100
committerRncLsn <rnc.lsn@gmail.com>2015-06-04 18:27:28 +0100
commitb0148d89a76b8fcbeb2e021442842e4e89690ef3 (patch)
tree5fa660dabd4b009c114c522fffd9aaed39a9adde /pom.xml
parent51cfc39903ae53cbcaba9a9f5c69cac08ae63fa7 (diff)
downloadACQuA-b0148d89a76b8fcbeb2e021442842e4e89690ef3.tar.gz
ACQuA-b0148d89a76b8fcbeb2e021442842e4e89690ef3.zip
Fixed terms' depth count in SkolemTermsManager (it was always zero).
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index ad8c2b1..0a9f1c7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,4 +1,4 @@
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 1<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion> 3 <modelVersion>4.0.0</modelVersion>
4 <groupId>uk.ac.ox.cs.pagoda</groupId> 4 <groupId>uk.ac.ox.cs.pagoda</groupId>
@@ -88,6 +88,20 @@
88 <artifactId>dashboard-maven-plugin</artifactId> 88 <artifactId>dashboard-maven-plugin</artifactId>
89 <version>1.0.0-beta-1</version> 89 <version>1.0.0-beta-1</version>
90 </plugin> 90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-surefire-plugin</artifactId>
94 <version>2.13</version>
95 <configuration>
96 <forkMode>always</forkMode>
97 <systemPropertyVariables>
98 <reporter.debug>false</reporter.debug>
99 </systemPropertyVariables>
100 <suiteXmlFiles>
101 <suiteXmlFile>testResources/LightTests.xml</suiteXmlFile>
102 </suiteXmlFiles>
103 </configuration>
104 </plugin>
91 </plugins> 105 </plugins>
92 </reporting> 106 </reporting>
93 <dependencies> 107 <dependencies>