fix some errors
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-10-22 00:14:00 +02:00
parent f6a8ac9aaf
commit 0638b7a116
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
2 changed files with 10 additions and 9 deletions

View File

@ -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"]

View File

@ -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
}