Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.

Migrates toolkit portion to atlan-java #66

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -39,4 +39,8 @@ bin/
.vscode/

### Mac OS ###
.DS_Store
.DS_Store

### Generated packages ###
packages/**/resources/**
pipelines/**/resources/**
Original file line number Diff line number Diff line change
@@ -5,21 +5,33 @@ plugins {
id("com.diffplug.spotless")
}

group = "com.atlan"
group = providers.gradleProperty("group").get()
version = providers.gradleProperty("version").get()

repositories {
mavenCentral()
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
mavenContent {
snapshotsOnly()
}
}
}

dependencies {
implementation("com.atlan:atlan-java:1.6.0")
implementation("com.atlan:atlan-java:1.7.0-SNAPSHOT")
implementation("com.atlan:package-toolkit-runtime:1.7.0-SNAPSHOT")
implementation("com.atlan:package-toolkit-config:1.7.0-SNAPSHOT")
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")
runtimeOnly("org.apache.logging.log4j:log4j-core:2.20.0")
runtimeOnly("org.apache.logging.log4j:log4j-slf4j2-impl:2.20.0")
testImplementation("org.jetbrains.kotlin:kotlin-test:1.8.10")
}

tasks {
jar {
destinationDirectory.set(file(jarPath))
}
test {
useJUnitPlatform()
}
31 changes: 0 additions & 31 deletions common/build.gradle.kts

This file was deleted.

207 changes: 0 additions & 207 deletions common/src/main/kotlin/Utils.kt

This file was deleted.

24 changes: 0 additions & 24 deletions common/src/main/kotlin/config/RuntimeConfig.kt

This file was deleted.

23 changes: 0 additions & 23 deletions common/src/main/resources/log4j2.xml

This file was deleted.

2 changes: 1 addition & 1 deletion containers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2023 Atlan Pte. Ltd.
FROM ghcr.io/atlanhq/atlan-java:1.6.0
FROM ghcr.io/atlanhq/atlan-java@sha256:f6ab4d0d615b03c2e17f356ba24a26c6c9cbe7fb242801594a1c4588c1fd438d

LABEL org.opencontainers.image.vendor="Atlan Pte. Ltd." \
org.opencontainers.image.source="https://github.com/atlanhq/atlan-kotlin-samples" \
38 changes: 0 additions & 38 deletions events/build.gradle.kts

This file was deleted.

Loading