Skip to content

Commit

Permalink
Merge pull request #83 from atruvia/main
Browse files Browse the repository at this point in the history
Adjustments for building with CUSTOM_REPOSITORIES (e.g Nexus)
  • Loading branch information
juergenhemelt authored Aug 26, 2024
2 parents c857f09 + 581ac0c commit 8d92e88
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

8 changes: 1 addition & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
18 changes: 18 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -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')

0 comments on commit 8d92e88

Please sign in to comment.