diff --git a/build.gradle b/build.gradle index 0aaa34a..ad1a642 100644 --- a/build.gradle +++ b/build.gradle @@ -39,4 +39,4 @@ compileTestKotlin { } group 'org.mosad' -version '1.0.0' +version '1.0.1' diff --git a/src/main/kotlin/org/mosad/thecitadelofricks/APIController.kt b/src/main/kotlin/org/mosad/thecitadelofricks/APIController.kt index 77ecfb4..998d9b0 100644 --- a/src/main/kotlin/org/mosad/thecitadelofricks/APIController.kt +++ b/src/main/kotlin/org/mosad/thecitadelofricks/APIController.kt @@ -47,7 +47,7 @@ class APIController { // Controller stuff var logger: Logger = LoggerFactory.getLogger(APIController::class.java) private val startTime = System.currentTimeMillis() / 1000 - private val apiVersion = "1.0.0" + private val apiVersion = "1.0.1" // hso parser links (hardcoded) private val mensaLink = "https://www.swfr.de/de/essen-trinken/speiseplaene/mensa-offenburg/" diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index a627662..8cff660 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,4 +1,15 @@ -# Specify the level for spring boot and hibernate's loggers -# Available levels are: TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF -logging.level.org.springframework.web = INFO -#logging.level.org.hibernate = ERROR \ No newline at end of file +# ---------------------------------------- +# CORE PROPERTIES +# ---------------------------------------- + +# LOGGING + +logging.level.org.springframework.web=INFO + +# ---------------------------------------- +# WEB PROPERTIES +# ---------------------------------------- + +# EMBEDDED SERVER CONFIGURATION (ServerProperties) +server.address=127.0.0.1 +server.port=8080 \ No newline at end of file