This commit is contained in:
parent
f6a8ac9aaf
commit
0638b7a116
@ -9,7 +9,7 @@ RUN chown -R $APPLICATION_USER /app
|
||||
USER $APPLICATION_USER
|
||||
|
||||
WORKDIR /app
|
||||
COPY ./build/libs/birb-integrated-bench-0.0.1.jar /app/birb-integrated-bench.jar
|
||||
COPY ./build/libs/birb-integrated-bench.jar /app/birb-integrated-bench.jar
|
||||
COPY ./wave.wav /app/wave.wav
|
||||
|
||||
CMD ["java", "-server", "-XX:+UnlockExperimentalVMOptions", "-XX:InitialRAMFraction=2", "-XX:MinRAMFraction=2", "-XX:MaxRAMFraction=2", "-XX:+UseG1GC", "-XX:MaxGCPauseMillis=100", "-XX:+UseStringDeduplication", "-jar", "birb-integrated-bench.jar"]
|
17
build.gradle
17
build.gradle
@ -1,14 +1,15 @@
|
||||
buildscript {
|
||||
repositories {
|
||||
jcenter()
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://repo.eclipse.org/content/repositories/paho-releases/")
|
||||
}
|
||||
maven {
|
||||
url = uri("https://plugins.gradle.org/m2/")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://repo.eclipse.org/content/repositories/paho-releases/")
|
||||
}
|
||||
maven {
|
||||
url = uri("https://plugins.gradle.org/m2/")
|
||||
}
|
||||
|
||||
|
||||
dependencies {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
@ -62,7 +63,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
||||
}
|
||||
|
||||
shadowJar {
|
||||
baseName = 'mqtt-benchmark-component'
|
||||
baseName = 'birb-integrated-bench'
|
||||
classifier = null
|
||||
version = null
|
||||
}
|
Loading…
Reference in New Issue
Block a user