aboutsummaryrefslogtreecommitdiffstats
path: root/ms/sdclistener/application/pom.xml
diff options
context:
space:
mode:
authorMichael Dürre <michael.duerre@highstreet-technologies.com>2020-08-21 06:56:48 +0200
committerKAPIL SINGAL <ks220y@att.com>2020-08-24 17:15:13 +0000
commit400aed4ddd71657b6c81bb6ec95b1fac2ad63e8e (patch)
tree8c9282db000dd7dba09a988791f6930b433f4eea /ms/sdclistener/application/pom.xml
parentbe1fce412990f8e8f2ff8d338c50e29fdf47e8ad (diff)
fixes for J11
fix pom files for J11 compile issues Issue-ID: CCSDK-2680 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Change-Id: Iaa7a426cdf947288af64d41a94d954a933217332 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Diffstat (limited to 'ms/sdclistener/application/pom.xml')
-rw-r--r--ms/sdclistener/application/pom.xml36
1 files changed, 35 insertions, 1 deletions
diff --git a/ms/sdclistener/application/pom.xml b/ms/sdclistener/application/pom.xml
index 45c3919e6..a44816af8 100644
--- a/ms/sdclistener/application/pom.xml
+++ b/ms/sdclistener/application/pom.xml
@@ -77,7 +77,12 @@
<artifactId>jmockit</artifactId>
<scope>test</scope>
</dependency>
-
+ <dependency>
+ <groupId>org.jacorb</groupId>
+ <artifactId>jacorb-omgapi</artifactId>
+ <version>3.8</version>
+ <scope>test</scope>
+ </dependency>
<!-- GRPC Dependencies -->
<dependency>
<groupId>io.grpc</groupId>
@@ -122,4 +127,33 @@
<artifactId>logback-classic</artifactId>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>default-test</id>
+ <phase>test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <argLine>-Djdk.attach.allowAttachSelf=true ${surefireArgLine}</argLine>
+ <excludes>
+ <exclude>**/IT*.java</exclude>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <argLine>${surefireArgLine}</argLine>
+ <excludes>
+ <exclude>**/IT*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>