Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
user-manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
user-manager
Commits
7c883847
Commit
7c883847
authored
2 years ago
by
OZGCloud
Browse files
Options
Downloads
Patches
Plain Diff
OZG-2651 structure pom.xml; set log to INFO
parent
9e9dd1d3
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+251
-237
251 additions, 237 deletions
pom.xml
src/main/resources/application.yaml
+1
-5
1 addition, 5 deletions
src/main/resources/application.yaml
with
252 additions
and
242 deletions
pom.xml
+
251
−
237
View file @
7c883847
<?xml version="1.0"?>
<project
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns=
"http://maven.apache.org/POM/4.0.0"
<project
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
de.itvsh.kop.user
</groupId>
<artifactId>
user-manager
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<name>
User Manager
</name>
<distributionManagement>
<repository>
<id>
ozg-nexus
</id>
<name>
ozg-releases
</name>
<url>
https://nexus.ozg-sh.de/repository/ozg-releases/
</url>
</repository>
<snapshotRepository>
<id>
ozg-snapshots-nexus
</id>
<name>
ozg-snapshots
</name>
<url>
https://nexus.ozg-sh.de/repository/ozg-snapshots/
</url>
</snapshotRepository>
</distributionManagement>
<name>
Kop UserManager
</name>
<properties>
<compiler-plugin.version>
3.8.1
</compiler-plugin.version>
<jacoco.plugin.version>
0.8.8
</jacoco.plugin.version>
<maven.compiler.release>
17
</maven.compiler.release>
<skipITs>
false
</skipITs>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<compiler-plugin.version>
3.8.1
</compiler-plugin.version>
<maven.compiler.release>
17
</maven.compiler.release>
<jacoco.plugin.version>
0.8.8
</jacoco.plugin.version>
<quarkus.platform.version>
2.10.3.Final
</quarkus.platform.version>
<skipITs>
false
</skipITs>
<surefire-plugin.version>
3.0.0-M7
</surefire-plugin.version>
<git-commit-id-plugin.version>
4.9.10
</git-commit-id-plugin.version>
<!-- TODO Properties entfernen, sobald der Testcode draussen ist -->
<org.assertj-core.version>
3.23.1
</org.assertj-core.version>
<org.projectlombok.version>
1.18.24
</org.projectlombok.version>
<!-- -->
</properties>
<dependencyManagement>
<dependencies>
<dependency>
...
...
@@ -39,77 +40,87 @@
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Quarkus -->
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-resteasy-reactive-jackson
</artifactId>
</dependency>
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-
mongodb-panache
</artifactId>
<artifactId>
quarkus-
arc
</artifactId>
</dependency>
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-
arc
</artifactId>
<artifactId>
quarkus-
config-yaml
</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-resteasy-reactive
</artifactId>
<artifactId>
quarkus-junit5
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-spring-web
</artifactId>
<groupId>
io.rest-assured
</groupId>
<artifactId>
rest-assured
</artifactId>
<scope>
test
</scope>
</dependency>
<!-- Tools -->
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-container-image-docker
</artifactId>
<artifactId>
quarkus-jacoco
</artifactId>
<scope>
test
</scope>
</dependency>
<!-- TODO Dependency entfernen, sobald der Testcode draussen ist -->
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-
container-image-docker-deployment
</artifactId>
<artifactId>
quarkus-
spring-web
</artifactId>
</dependency>
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-config-yaml
</artifactId>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${org.projectlombok.version}
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
io.quarku
s
</groupId>
<artifactId>
quarkus-junit5
</artifactId>
<groupId>
org.testcontainer
s
</groupId>
<artifactId>
mongodb
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
io.rest-assured
</groupId>
<artifactId>
rest-assured
</artifactId>
<scope>
test
</scope>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-mongodb-panache
</artifactId>
</dependency>
<dependency>
<groupId>
org.testcontainers
</groupId>
<artifactId>
testcontainers
</artifactId>
<scope>
test
</scope>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-resteasy-reactive
</artifactId>
</dependency>
<dependency>
<groupId>
org.testcontainers
</groupId>
<artifactId>
mongodb
</artifactId>
<artifactId>
testcontainers
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.assertj
</groupId>
<artifactId>
assertj-core
</artifactId>
<version>
3.23.1
</version>
<version>
${org.assertj-core.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-jacoco
</artifactId>
<scope>
test
</scope>
<artifactId>
quarkus-container-image-docker
</artifactId>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
1.18.24
</version>
<scope>
provided
</scope>
<groupId>
io.quarkus
</groupId>
<artifactId>
quarkus-container-image-docker-deployment
</artifactId>
</dependency>
<!-- -->
</dependencies>
<build>
<plugins>
<plugin>
...
...
@@ -126,15 +137,6 @@
</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>
...
...
@@ -158,7 +160,6 @@
</plugin>
<plugin>
<artifactId>
maven-failsafe-plugin
</artifactId>
<version>
${surefire-plugin.version}
</version>
<executions>
<execution>
<goals>
...
...
@@ -182,7 +183,6 @@
<plugin>
<groupId>
pl.project13.maven
</groupId>
<artifactId>
git-commit-id-plugin
</artifactId>
<version>
4.9.10
</version>
<executions>
<execution>
<id>
get-the-git-infos
</id>
...
...
@@ -221,6 +221,7 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>
native
</id>
...
...
@@ -235,4 +236,17 @@
</properties>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>
ozg-nexus
</id>
<name>
ozg-releases
</name>
<url>
https://nexus.ozg-sh.de/repository/ozg-releases/
</url>
</repository>
<snapshotRepository>
<id>
ozg-snapshots-nexus
</id>
<name>
ozg-snapshots
</name>
<url>
https://nexus.ozg-sh.de/repository/ozg-snapshots/
</url>
</snapshotRepository>
</distributionManagement>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/resources/application.yaml
+
1
−
5
View file @
7c883847
#quarkus.mongodb.connection-string = mongodb://localhost:27017
#quarkus.mongodb.database = user
#quarkus.http.cors=true
#quarkus.application.name=KopUserManager
quarkus
:
container-image
:
name
:
user-manager
log
:
level
:
DEBUG
\ No newline at end of file
level
:
INFO
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment