Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
f75dd66b
Commit
f75dd66b
authored
4 years ago
by
Simon Ehrenstein
Browse files
Options
Downloads
Plain Diff
Merge in order to add logging
parents
26279652
b7bb0e54
No related branches found
No related tags found
4 merge requests
!159
Re-implementation of Theodolite with Kotlin/Quarkus
,
!157
Update Graal Image in CI pipeline
,
!83
WIP: Re-implementation of Theodolite with Kotlin/Quarkus
,
!78
Resolve "Implement Quarkus/Kotlin protype"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theodolite-quarkus/build.gradle
+2
-2
2 additions, 2 deletions
theodolite-quarkus/build.gradle
theodolite-quarkus/src/main/kotlin/theodolite/Main.kt
+3
-0
3 additions, 0 deletions
theodolite-quarkus/src/main/kotlin/theodolite/Main.kt
with
5 additions
and
2 deletions
theodolite-quarkus/build.gradle
+
2
−
2
View file @
f75dd66b
...
@@ -20,9 +20,9 @@ dependencies {
...
@@ -20,9 +20,9 @@ dependencies {
testImplementation
'io.quarkus:quarkus-junit5'
testImplementation
'io.quarkus:quarkus-junit5'
testImplementation
'io.rest-assured:rest-assured'
testImplementation
'io.rest-assured:rest-assured'
implementation
'org.slf4j:slf4j-simple:1.7.29'
implementation
'io.github.microutils:kotlin-logging:1.12.0'
implementation
'io.fabric8:kubernetes-client:5.0.0-alpha-2'
implementation
'io.fabric8:kubernetes-client:5.0.0-alpha-2'
//implementation 'com.fkorotkov:kubernetes-dsl:2.8.1'
compile
group:
'org.apache.kafka'
,
name:
'kafka-clients'
,
version:
'2.7.0'
compile
group:
'org.apache.kafka'
,
name:
'kafka-clients'
,
version:
'2.7.0'
compile
group:
'org.apache.zookeeper'
,
name:
'zookeeper'
,
version:
'3.6.2'
compile
group:
'org.apache.zookeeper'
,
name:
'zookeeper'
,
version:
'3.6.2'
}
}
...
...
This diff is collapsed.
Click to expand it.
theodolite-quarkus/src/main/kotlin/theodolite/Main.kt
+
3
−
0
View file @
f75dd66b
package
theodolite
package
theodolite
import
io.quarkus.runtime.annotations.QuarkusMain
import
io.quarkus.runtime.annotations.QuarkusMain
import
theodolite.execution.TheodoliteExecutor
import
theodolite.execution.TheodoliteExecutor
import
mu.KotlinLogging
private
val
logger
=
KotlinLogging
.
logger
{}
@QuarkusMain
@QuarkusMain
object
Main
{
object
Main
{
...
@@ -9,5 +11,6 @@ object Main {
...
@@ -9,5 +11,6 @@ object Main {
fun
main
(
args
:
Array
<
String
>)
{
fun
main
(
args
:
Array
<
String
>)
{
val
theodolite
=
TheodoliteExecutor
()
val
theodolite
=
TheodoliteExecutor
()
theodolite
.
run
()
theodolite
.
run
()
logger
.
info
(
"Application started"
)
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment