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

Commit

Permalink
Merge pull request #66 from atlanhq/DX-314
Browse files Browse the repository at this point in the history
Migrates toolkit portion to atlan-java
  • Loading branch information
cmgrote authored Nov 8, 2023
2 parents 85980f0 + 6f519f5 commit 16a4506
Show file tree
Hide file tree
Showing 79 changed files with 69 additions and 2,876 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Up @@ -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()
}
Expand Down
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" \
Expand Down
38 changes: 0 additions & 38 deletions events/build.gradle.kts

This file was deleted.

Loading

0 comments on commit 16a4506

Please sign in to comment.