Skip to content

Commit

Permalink
Move hoptimator-avro to fat jar
Browse files Browse the repository at this point in the history
  • Loading branch information
ryannedolan committed Dec 9, 2024
1 parent 8808be6 commit 5288129
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 48 deletions.
48 changes: 0 additions & 48 deletions hoptimator-avro/build.gradle
Original file line number Diff line number Diff line change
@@ -1,57 +1,9 @@
plugins {
id 'java'
id 'maven-publish'
}



dependencies {
implementation project(':hoptimator-api')
implementation libs.avro
implementation libs.calcite.core
}

publishing {
repositories {
maven {
name 'GitHubPackages'
url = 'https://maven.pkg.github.com/linkedin/Hoptimator'
credentials {
username = System.getenv('GITHUB_ACTOR')
password = System.getenv('GITHUB_TOKEN')
}
}
maven {
name 'LinkedInJFrog'
url 'https://linkedin.jfrog.io/artifactory/hoptimator'
credentials {
username = System.getenv('JFROG_USERNAME')
password = System.getenv('JFROG_API_KEY')
}
}
}
publications {
maven(MavenPublication) {
groupId = 'com.linkedin.hoptimator'
artifactId = 'hoptimator-avro'
version = System.getenv('VERSION')
from components.java
pom {
name = 'hoptimator-avro'
description = 'Avro-related Hoptimator plugins'
url = 'https://github.com/linkedin/Hoptimator'
licenses {
license {
name = 'BSD 2-Clause'
url = 'https://raw.githubusercontent.com/linkedin/Hoptimator/main/LICENSE'
}
}
scm {
connection = 'scm:git:git://github.com:linkedin/Hoptimator.git'
developerConnection = 'scm:git:ssh://github.com:linkedin/Hoptimator.git'
url = 'https://github.com/linkedin/Hoptimator'
}
}
}
}
}
1 change: 1 addition & 0 deletions hoptimator-jdbc-driver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

dependencies {
implementation project(':hoptimator-avro')
implementation project(':hoptimator-jdbc')
implementation project(':hoptimator-util')
implementation project(':hoptimator-k8s')
Expand Down

0 comments on commit 5288129

Please sign in to comment.