Skip to content

Commit 8ea40f6

Browse files
committed
MLE-24829 Getting Black Duck working on develop-1.x
Need for "./gradlew hubInit" to work from the root directory.
1 parent b0568dc commit 8ea40f6

File tree

5 files changed

+34
-2
lines changed

5 files changed

+34
-2
lines changed

build.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
buildscript {
2+
repositories {
3+
mavenCentral()
4+
}
5+
dependencies {
6+
// Add jaxen to buildscript classpath to prevent NoClassDefFoundError when shadow plugin interferes with
7+
// ml-data-hub plugin execution. It is not yet known why the shadow plugin causes this problem or why it's
8+
// specific to the jaxen library, but this resolves the problem.
9+
classpath 'jaxen:jaxen:2.0.0'
10+
}
11+
}
12+
113
plugins {
214
id 'java'
315
id 'net.saliman.properties' version '1.5.2'

docker-compose.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: docker-tests-kafka-marklogic
3+
services:
4+
marklogic:
5+
image: "progressofficial/marklogic-db:latest-11"
6+
platform: linux/amd64
7+
environment:
8+
- INSTALL_CONVERTERS=true
9+
- MARKLOGIC_INIT=true
10+
- MARKLOGIC_ADMIN_USERNAME=admin
11+
- MARKLOGIC_ADMIN_PASSWORD=admin
12+
volumes:
13+
- ./docker/marklogic/logs:/var/opt/MarkLogic/Logs
14+
ports:
15+
- "8000-8002:8000-8002"
16+
- "8010-8013:8010-8013"
17+
- "8018-8019:8018-8019"
18+
cap_drop:
19+
- NET_RAW

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
rootProject.name = 'kafka-connect-marklogic'
22

3+
include "test-app"
-5.44 KB
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
4-
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
5+
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)