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 @@ ...@@ -64,6 +64,10 @@
<groupId>io.quarkus</groupId> <groupId>io.quarkus</groupId>
<artifactId>quarkus-container-image-docker</artifactId> <artifactId>quarkus-container-image-docker</artifactId>
</dependency> </dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-config-yaml</artifactId>
</dependency>
<dependency> <dependency>
<groupId>io.quarkus</groupId> <groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId> <artifactId>quarkus-junit5</artifactId>
...@@ -118,6 +122,15 @@ ...@@ -118,6 +122,15 @@
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration>
<docker>
<publishRegistry>
<username>${docker-username}</username>
<password>${docker-password}</password>
<url>${docker-url}</url>
</publishRegistry>
</docker>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
......
...@@ -2,4 +2,6 @@ ...@@ -2,4 +2,6 @@
#quarkus.mongodb.database = user #quarkus.mongodb.database = user
#quarkus.http.cors=true #quarkus.http.cors=true
#quarkus.application.name=KopUserManager #quarkus.application.name=KopUserManager
quarkus.container-image.name=user-manager quarkus:
\ No newline at end of file container-image:
name: user-manager
\ No newline at end of file
#quarkus.mongodb.connection-string = mongodb://localhost:27017 #quarkus.mongodb.connection-string = mongodb://localhost:27017
#quarkus.mongodb.database = test #quarkus.mongodb.database = test
#quarkus.http.cors=true #quarkus.http.cors=true
quarkus.devservices.enabled=false quarkus:
\ No newline at end of file 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