mirror of
https://github.com/valitydev/hooker.git
synced 2024-11-06 00:05:17 +00:00
Bump service-parent-pom (#33)
This commit is contained in:
parent
be75d6432c
commit
f4eb04f247
6
pom.xml
6
pom.xml
@ -13,7 +13,7 @@
|
||||
<parent>
|
||||
<groupId>dev.vality</groupId>
|
||||
<artifactId>service-parent-pom</artifactId>
|
||||
<version>2.0.2</version>
|
||||
<version>2.0.3</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
@ -294,12 +294,12 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<version>1.7.0</version>
|
||||
<version>3.0.0</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.shared</groupId>
|
||||
<artifactId>maven-filtering</artifactId>
|
||||
<version>1.3</version>
|
||||
<version>3.3.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<configuration>
|
||||
|
@ -1,9 +1,9 @@
|
||||
server:
|
||||
port: '@server.port@'
|
||||
port: ${server.port}
|
||||
|
||||
management:
|
||||
server:
|
||||
port: '@management.port@'
|
||||
port: ${management.port}
|
||||
metrics:
|
||||
export:
|
||||
prometheus:
|
||||
@ -22,8 +22,8 @@ management:
|
||||
|
||||
spring:
|
||||
application:
|
||||
name: '@name@'
|
||||
description: '@description@'
|
||||
name: ${name}
|
||||
description: ${description}
|
||||
flyway:
|
||||
schemas: hook
|
||||
table: schema_version
|
||||
@ -51,10 +51,10 @@ kafka:
|
||||
produce:
|
||||
enabled: true
|
||||
info:
|
||||
version: '@version@'
|
||||
version: ${version}
|
||||
responsible: Inal Arsanukaev
|
||||
stage: dev
|
||||
damsel.version: '@damsel.version@'
|
||||
damsel.version: ${damsel.version}
|
||||
|
||||
service:
|
||||
invoicing:
|
||||
@ -71,9 +71,9 @@ limit:
|
||||
spring.datasource:
|
||||
type: com.zaxxer.hikari.HikariDataSource
|
||||
driver-class-name: org.postgresql.Driver
|
||||
url: '@db.url@'
|
||||
username: '@db.user@'
|
||||
password: '@db.password@'
|
||||
url: ${db.url}
|
||||
username: ${db.user}
|
||||
password: ${db.password}
|
||||
hikari:
|
||||
maximum-pool-size: 20
|
||||
idle-timeout: 30000
|
||||
|
Loading…
Reference in New Issue
Block a user