diff --git a/Dockerfile b/Dockerfile index 7b73882..f2ecd8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,5 +16,5 @@ LABEL org.opencontainers.image.description = "Egeria with event schema connector ENV CONNECTOR_VERSION ${CONNECTOR_VERSION} -COPY build/libs/egeria-connector-integration-event-schema-${CONNECTOR_VERSION}-jar-with-dependencies.jar /deployments/server/lib +COPY build/libs/egeria-connector-integration-event-schema-${CONNECTOR_VERSION}.jar /deployments/server/lib diff --git a/build.gradle b/build.gradle index a0fb928..41de3d3 100644 --- a/build.gradle +++ b/build.gradle @@ -46,12 +46,6 @@ repositories { maven { url("https://oss.sonatype.org/content/repositories/snapshots") } } -logger.info("Repository list:") -project.repositories.each { logger.info("Name: " + it.name + " url: " + it.url) } - -logger.info("Buildscript:") -project.buildscript.repositories.each { logger.info("Name: " + it.name + " url: " + it.url) } - // ensures we pick up the very latest snapshots when built configurations.all { // check for updates every build @@ -62,7 +56,7 @@ configurations.all { // TODO: Specify group, name, description, version of new code being built group = 'org.odpi.egeria' version = '1.0-SNAPSHOT' -ext.name = 'egeria-connector-integration-event-schema' +// ext.name = 'egeria-connector-integration-event-schema' description = 'Egeria integration connector for Confluent (c) Schema Registry.' // TODO: Specify Dependency versions as variables diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..19a795c --- /dev/null +++ b/settings.gradle @@ -0,0 +1,18 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + * Copyright Contributors to the ODPi Egeria project. + */ + +// Can pin plugin versions here as needed +pluginManagement { + plugins { + } +} +rootProject.name = 'egeria-connector-integration-event-schema' + +// For multi modules, list each *project name* here +// include(':egeria-connector-postgres') + +// These define the project names. For now we'll keep them the same as the directory +// Not needed if the project name desired exactly matches the directory name +//project(':egeria-connector-postgres').projectDir = file('egeria-connector-postgres-directory') \ No newline at end of file