aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2025-02-07 10:16:55 +0100
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2025-02-07 10:16:55 +0100
commita6e377889c3f91701f024ee79343174fe6f4434c (patch)
treedf106811972d65118cb664c771f633419e45e8b2 /pom.xml
parentec14ff1dbf54789864305b0113d124f5581903d5 (diff)
Reenable tests for the mso-infrastructure-bpmn module
- add vintage-engine dependency to mso-infrastructure-bpmn module to reenable tests - fix test case that broke because the InformDmaapClient was renamed to InformKafkaClient - exclude android-json from shazamcrest dep to resolve build warning - remove duplicate maven-dependency-plugin declaration from pom Issue-ID: SO-4134 Change-Id: I42013a81218e2527ab228b45103f128e8dd50cb3 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml16
1 files changed, 10 insertions, 6 deletions
diff --git a/pom.xml b/pom.xml
index f2e0fa127e..a156bc984e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -411,13 +411,13 @@
f = new File( p );
if( f.exists() ) {
break;
- }
+ }
p = "../" + p;
}
}
if( f != null ) {
String basePath = f.getCanonicalPath();
- basePath = basePath.substring( 0, basePath.lastIndexOf( File.separator ) );
+ basePath = basePath.substring( 0, basePath.lastIndexOf( File.separator ) );
project.properties['base-path'] = basePath.replace( '\\' , '/');
log.info(' - used base path = ' + project.properties['base-path'] );
} else {
@@ -578,16 +578,16 @@
<skipBuild>${docker.skip.build}</skipBuild>
<skipPush>${docker.skip.push}</skipPush>
<dockerHost>${docker.newHost}</dockerHost>
- <!-- 1. Update address to your local docker VM. 2. Add IP to
+ <!-- 1. Update address to your local docker VM. 2. Add IP to
your NO_PROXY environment variable -->
<certPath>${docker.host.cert.path}</certPath>
- <!-- Add -Ddocker.host.cert.pat="path to your local certs directory"
+ <!-- Add -Ddocker.host.cert.pat="path to your local certs directory"
to maven build command -->
<pushRegistry>${dockerPushRepo}</pushRegistry>
- <!-- Update .m2/settings.xml Add server id settings.dockerRepository,
+ <!-- Update .m2/settings.xml Add server id settings.dockerRepository,
username, and password -->
<pullRegistry>${dockerPullRepo}</pullRegistry>
- <!-- If docker repo is not public. Update .m2/settings.xml Add
+ <!-- If docker repo is not public. Update .m2/settings.xml Add
server id settings.dockerRepository, username, and password -->
<images>
<image>
@@ -855,6 +855,10 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>com.vaadin.external.google</groupId>
+ <artifactId>android-json</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>