mirror of
https://github.com/valitydev/gambit.git
synced 2024-11-06 08:35:17 +00:00
40f83a80aa
Co-authored-by: ggmaleva <ggmaleva@yandex.ru>
300 lines
12 KiB
XML
300 lines
12 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>service-parent-pom</artifactId>
|
|
<version>1.0.18</version>
|
|
</parent>
|
|
|
|
<artifactId>gambit</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>gambit</name>
|
|
<description></description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>15</java.version>
|
|
<server.port>8022</server.port>
|
|
<server.rest.port>8080</server.rest.port>
|
|
<management.port>8023</management.port>
|
|
<exposed.ports>${server.port} ${server.rest.port} ${management.port}</exposed.ports>
|
|
<db.url>jdbc:postgresql://localhost:5432/gambit</db.url>
|
|
<db.user>postgres</db.user>
|
|
<db.password>postgres</db.password>
|
|
<db.name>gambit</db.name>
|
|
<db.schema>gbt</db.schema>
|
|
<local.pg.url>jdbc:postgresql://localhost:5432/gambit</local.pg.url>
|
|
<local.pg.port>5432</local.pg.port>
|
|
<swag-gambit.version>1.4-cb39563-server</swag-gambit.version>
|
|
<gambit-proto.version>1.7-b10bf69</gambit-proto.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality.woody</groupId>
|
|
<artifactId>woody-thrift</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>shared-resources</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>db-common-lib</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>swag-gambit</artifactId>
|
|
<version>${swag-gambit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>gambit-proto</artifactId>
|
|
<version>${gambit-proto.version}</version>
|
|
</dependency>
|
|
|
|
<!--spring-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!--third party-->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq</artifactId>
|
|
</dependency>
|
|
|
|
<!--test-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>testcontainers-annotations</artifactId>
|
|
<version>1.4.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.testcontainers</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>1.17.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
|
<testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>${project.build.directory}/maven-shared-archive-resources</directory>
|
|
<targetPath>${project.build.directory}</targetPath>
|
|
<includes>
|
|
<include>Dockerfile</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
<resource>
|
|
<directory>${project.build.directory}/maven-shared-archive-resources</directory>
|
|
<filtering>true</filtering>
|
|
<excludes>
|
|
<exclude>Dockerfile</exclude>
|
|
</excludes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
<version>1.6.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
<artifactId>maven-filtering</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<resourceBundles>
|
|
<resourceBundle>dev.vality:shared-resources:${shared-resources.version}</resourceBundle>
|
|
</resourceBundles>
|
|
<attachToMain>false</attachToMain>
|
|
<attachToTest>false</attachToTest>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>process</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>dev.vality.maven.plugins</groupId>
|
|
<artifactId>pg-embedded-plugin</artifactId>
|
|
<version>1.0.1</version>
|
|
<configuration>
|
|
<port>${local.pg.port}</port>
|
|
<dbName>${db.name}</dbName>
|
|
<schemas>
|
|
<schema>${db.schema}</schema>
|
|
</schemas>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>PG_server_start</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>start</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>PG_server_stop</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>stop</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-maven-plugin</artifactId>
|
|
<configuration>
|
|
<url>${local.pg.url}</url>
|
|
<user>${db.user}</user>
|
|
<password>${db.password}</password>
|
|
<schemas>
|
|
<schema>${db.schema}</schema>
|
|
</schemas>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>migrate</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>migrate</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${postgresql.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-codegen-maven</artifactId>
|
|
<configuration>
|
|
<jdbc>
|
|
<driver>org.postgresql.Driver</driver>
|
|
<url>${local.pg.url}</url>
|
|
<user>${db.user}</user>
|
|
<password>${db.password}</password>
|
|
</jdbc>
|
|
<generator>
|
|
<generate>
|
|
<javaTimeTypes>true</javaTimeTypes>
|
|
<pojos>true</pojos>
|
|
<pojosEqualsAndHashCode>true</pojosEqualsAndHashCode>
|
|
<pojosToString>true</pojosToString>
|
|
</generate>
|
|
<database>
|
|
<name>org.jooq.meta.postgres.PostgresDatabase</name>
|
|
<includes>.*</includes>
|
|
<excludes>
|
|
schema_version|.*func
|
|
</excludes>
|
|
<inputSchema>${db.schema}</inputSchema>
|
|
</database>
|
|
<target>
|
|
<packageName>dev.vality.gambit.domain</packageName>
|
|
<directory>target/generated-sources/</directory>
|
|
</target>
|
|
</generator>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>gen-src</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|