Skip to content
Snippets Groups Projects
Commit d33084d4 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-2651 use yaml instead of properties

parent 0cf3cf02
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-container-image-docker</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-config-yaml</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
......@@ -118,6 +122,15 @@
</goals>
</execution>
</executions>
<configuration>
<docker>
<publishRegistry>
<username>${docker-username}</username>
<password>${docker-password}</password>
<url>${docker-url}</url>
</publishRegistry>
</docker>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
......
......@@ -2,4 +2,6 @@
#quarkus.mongodb.database = user
#quarkus.http.cors=true
#quarkus.application.name=KopUserManager
quarkus.container-image.name=user-manager
\ No newline at end of file
quarkus:
container-image:
name: user-manager
\ No newline at end of file
#quarkus.mongodb.connection-string = mongodb://localhost:27017
#quarkus.mongodb.database = test
#quarkus.http.cors=true
quarkus.devservices.enabled=false
\ No newline at end of file
quarkus:
devservices:
enable: false
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment