File tree Expand file tree Collapse file tree 2 files changed +27
-5
lines changed
mule-4.2.2/src/test/java/io/opentracing/contrib/specialagent/test Expand file tree Collapse file tree 2 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 29
29
<properties >
30
30
<exec .skip>true</exec .skip>
31
31
</properties >
32
+ <profiles >
33
+ <profile >
34
+ <id >jdk11-compat</id >
35
+ <activation >
36
+ <jdk >11</jdk >
37
+ </activation >
38
+ <!-- This could be a bug with Mule 4 class loading mechanism behaving differently between
39
+ JDK 1.8 and 11, or an oversight on mule-4-artifact-module instrumentation. To be determined... -->
40
+ <dependencies >
41
+ <dependency >
42
+ <groupId >io.opentracing</groupId >
43
+ <artifactId >opentracing-api</artifactId >
44
+ <scope >provided</scope >
45
+ </dependency >
46
+ <dependency >
47
+ <groupId >io.opentracing</groupId >
48
+ <artifactId >opentracing-noop</artifactId >
49
+ <scope >provided</scope >
50
+ </dependency >
51
+ <dependency >
52
+ <groupId >io.opentracing</groupId >
53
+ <artifactId >opentracing-util</artifactId >
54
+ <scope >provided</scope >
55
+ </dependency >
56
+ </dependencies >
57
+ </profile >
58
+ </profiles >
32
59
<build >
33
60
<plugins >
34
61
<plugin >
Original file line number Diff line number Diff line change @@ -21,11 +21,6 @@ public class Mule4ContainerITest {
21
21
private static final String MULE_HOME = "/src/test/mule-home" ;
22
22
23
23
public static void main (final String [] args ) throws Exception {
24
- if (!System .getProperty ("java.version" ).startsWith ("1.8." )) {
25
- System .err .println ("This test is not working: https://github.com/opentracing-contrib/java-specialagent/issues/405" );
26
- return ;
27
- }
28
-
29
24
final String homeDir = new File ("" ).getAbsolutePath () + MULE_HOME ;
30
25
final Mule4ContainerITest lock = new Mule4ContainerITest ();
31
26
System .setProperty (MuleSystemProperties .MULE_SIMPLE_LOG , "true" );
You can’t perform that action at this time.
0 commit comments