Skip to content

Commit 1294e43

Browse files
authored
fix tests (#899)
1 parent 5e89d04 commit 1294e43

File tree

3 files changed

+75
-0
lines changed
  • connectivity/connectivity-demos-test
  • rule-engine/rule-engine-demos-test
  • workflow/workflow-demos-test

3 files changed

+75
-0
lines changed

connectivity/connectivity-demos-test/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@
6767
<artifactId>ivy-web-test-api</artifactId>
6868
<scope>test</scope>
6969
</dependency>
70+
<dependency>
71+
<groupId>com.axonivy.ivy.api.test</groupId>
72+
<artifactId>ivy-test-api</artifactId>
73+
<scope>test</scope>
74+
</dependency>
7075
<dependency>
7176
<groupId>org.awaitility</groupId>
7277
<artifactId>awaitility</artifactId>

rule-engine/rule-engine-demos-test/pom.xml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
<artifactId>rule-engine-demos-test</artifactId>
1313
<version>13.2.0-SNAPSHOT</version>
1414
<packaging>iar-integration-test</packaging>
15+
16+
<properties>
17+
<drools.version>10.0.0</drools.version>
18+
</properties>
19+
1520
<dependencies>
1621
<dependency>
1722
<groupId>com.axonivy.demo</groupId>
@@ -30,10 +35,70 @@
3035
<artifactId>ivy-web-test-api</artifactId>
3136
<scope>test</scope>
3237
</dependency>
38+
<dependency>
39+
<groupId>com.axonivy.ivy.api.test</groupId>
40+
<artifactId>ivy-test-api</artifactId>
41+
<scope>test</scope>
42+
</dependency>
3343
<dependency>
3444
<groupId>com.axonivy.ivy.api</groupId>
3545
<artifactId>ivy-api</artifactId>
3646
</dependency>
47+
48+
<dependency>
49+
<groupId>org.drools</groupId>
50+
<artifactId>drools-decisiontables</artifactId>
51+
<version>${drools.version}</version>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.drools</groupId>
56+
<artifactId>drools-mvel</artifactId>
57+
<version>${drools.version}</version>
58+
<scope>test</scope>
59+
<exclusions>
60+
<exclusion>
61+
<groupId>org.drools</groupId>
62+
<artifactId>drools-compiler</artifactId>
63+
</exclusion>
64+
</exclusions>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.drools</groupId>
68+
<artifactId>drools-xml-support</artifactId>
69+
<version>${drools.version}</version>
70+
<scope>test</scope>
71+
<exclusions>
72+
<exclusion>
73+
<groupId>org.drools</groupId>
74+
<artifactId>drools-compiler</artifactId>
75+
</exclusion>
76+
</exclusions>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.kie</groupId>
80+
<artifactId>kie-dmn-core</artifactId>
81+
<version>${drools.version}</version>
82+
<scope>test</scope>
83+
<exclusions>
84+
<exclusion>
85+
<groupId>org.eclipse.jdt</groupId>
86+
<artifactId>ecj</artifactId>
87+
</exclusion>
88+
<exclusion>
89+
<groupId>com.fasterxml.jackson.core</groupId>
90+
<artifactId>jackson-annotations</artifactId>
91+
</exclusion>
92+
<exclusion>
93+
<groupId>com.fasterxml.jackson.core</groupId>
94+
<artifactId>jackson-databind</artifactId>
95+
</exclusion>
96+
<exclusion>
97+
<groupId>com.fasterxml.jackson.core</groupId>
98+
<artifactId>jackson-core</artifactId>
99+
</exclusion>
100+
</exclusions>
101+
</dependency>
37102
</dependencies>
38103
<repositories>
39104
<repository>

workflow/workflow-demos-test/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
<artifactId>ivy-web-test-api</artifactId>
2525
<scope>test</scope>
2626
</dependency>
27+
<dependency>
28+
<groupId>com.axonivy.ivy.api.test</groupId>
29+
<artifactId>ivy-test-api</artifactId>
30+
<scope>test</scope>
31+
</dependency>
2732
<dependency>
2833
<groupId>org.apache.commons</groupId>
2934
<artifactId>commons-lang3</artifactId>

0 commit comments

Comments
 (0)