-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New hoptimator-operator-core module (#12)
- Loading branch information
1 parent
7c8e313
commit 7904541
Showing
7 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
plugins { | ||
id 'java-library' | ||
id 'idea' | ||
id 'maven-publish' | ||
} | ||
|
||
dependencies { | ||
implementation project(':hoptimator-planner') | ||
implementation project(':hoptimator-catalog') | ||
implementation project(':models') | ||
|
||
implementation libs.calciteCore | ||
implementation libs.kubernetesClient | ||
implementation libs.kubernetesExtendedClient | ||
implementation libs.slf4jLog4j | ||
|
||
testImplementation libs.junit | ||
testImplementation libs.assertj | ||
} | ||
|
||
publishing { | ||
repositories { | ||
maven { | ||
url = "https://maven.pkg.github.com/linkedin/Hoptimator" | ||
credentials { | ||
username = System.getenv('GITHUB_ACTOR') | ||
password = System.getenv('GITHUB_TOKEN') | ||
} | ||
} | ||
} | ||
publications { | ||
maven(MavenPublication) { | ||
groupId = 'com.linkedin.hoptimator' | ||
artifactId = 'hoptimator-operator-core' | ||
version = System.getenv('GITHUB_REF_NAME') | ||
from components.java | ||
} | ||
} | ||
} | ||
|
||
tasks.withType(JavaCompile) { | ||
options.compilerArgs << '-Xlint:deprecation' | ||
options.compilerArgs << '-Xlint:unchecked' | ||
} | ||
|
||
idea { | ||
module { | ||
downloadJavadoc = true | ||
downloadSources = true | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters