java-service-dependencies/pom.xml

254 lines
10 KiB
XML
Raw Normal View History

2021-02-01 09:14:29 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
2021-12-29 07:14:04 +00:00
<groupId>dev.vality</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>java-service-dependencies</artifactId>
2022-05-17 10:47:45 +00:00
<version>1.0.16</version>
2021-02-01 09:14:29 +00:00
<packaging>pom</packaging>
2021-12-29 07:14:04 +00:00
<name>Vality parent</name>
<description>Vality library parent pom</description>
<url>https://github.com/valitydev/java-service-dependencies</url>
2021-02-01 09:14:29 +00:00
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
2021-12-29 07:35:26 +00:00
2021-02-01 09:14:29 +00:00
<scm>
2021-12-29 07:14:04 +00:00
<url>https://github.com/valitydev/java-service-dependencies</url>
<developerConnection>scm:git:ssh://github.com/valitydev/java-service-dependencies.git</developerConnection>
<connection>scm:git:git://github.com/valitydev/java-service-dependencies.git</connection>
2021-02-01 09:14:29 +00:00
</scm>
2021-12-29 07:35:26 +00:00
2021-03-19 12:53:33 +00:00
<developers>
<developer>
2021-12-29 07:14:04 +00:00
<email>devs@vality.dev</email>
<organization>Vality</organization>
<organizationUrl>https://vality.dev</organizationUrl>
2021-03-19 12:53:33 +00:00
</developer>
</developers>
2021-12-29 07:35:26 +00:00
2021-02-01 09:14:29 +00:00
<properties>
2021-02-02 10:13:44 +00:00
<pubRepoId>ossrh</pubRepoId>
2021-12-29 07:35:26 +00:00
<pubRepo>https://s01.oss.sonatype.org/content/repositories/releases</pubRepo>
2021-02-02 10:13:44 +00:00
<pubSnapRepoId>ossrh</pubSnapRepoId>
2021-12-29 07:35:26 +00:00
<pubSnapRepo>https://s01.oss.sonatype.org/content/repositories/snapshots</pubSnapRepo>
2021-02-02 10:13:44 +00:00
<pubStagingRepoId>ossrh</pubStagingRepoId>
2021-12-29 07:35:26 +00:00
<pubStagingRepo>https://s01.oss.sonatype.org/</pubStagingRepo>
<woody.version>1.0.4</woody.version>
<lombok.version>1.18.22</lombok.version>
2022-05-17 10:47:45 +00:00
<damsel.version>1.563-d384c12</damsel.version>
2022-04-08 11:07:14 +00:00
<mamsel.version>0.2.2</mamsel.version>
<nop-rolling.version>1.0.1</nop-rolling.version>
<geck.verion>0.0.1</geck.verion>
<db-common-lib.version>0.0.1</db-common-lib.version>
2022-04-01 09:37:00 +00:00
<kafka-common-lib.version>0.0.3</kafka-common-lib.version>
<shared-resources.version>1.0.1</shared-resources.version>
<kotlin-logging.version>2.1.21</kotlin-logging.version>
<mockito-kotlin.version>4.0.0</mockito-kotlin.version>
2021-02-01 09:14:29 +00:00
</properties>
2021-02-02 10:13:44 +00:00
2021-02-01 09:14:29 +00:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.vality.woody</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>woody-thrift</artifactId>
2021-02-02 14:29:39 +00:00
<version>${woody.version}</version>
2021-02-01 09:14:29 +00:00
</dependency>
<dependency>
<groupId>dev.vality.woody</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>woody-api</artifactId>
<version>${woody.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>dev.vality</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>damsel</artifactId>
<version>${damsel.version}</version>
</dependency>
2021-04-23 09:08:45 +00:00
<dependency>
<groupId>dev.vality</groupId>
2021-04-23 09:08:45 +00:00
<artifactId>mamsel</artifactId>
<version>${mamsel.version}</version>
</dependency>
2021-02-01 09:14:29 +00:00
<dependency>
<groupId>dev.vality.logback</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>nop-rolling</artifactId>
<version>${nop-rolling.version}</version>
</dependency>
<dependency>
<groupId>dev.vality.geck</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>serializer</artifactId>
<version>${geck.verion}</version>
</dependency>
<dependency>
<groupId>dev.vality.geck</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>common</artifactId>
<version>${geck.verion}</version>
</dependency>
<dependency>
<groupId>dev.vality.geck</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>filter</artifactId>
<version>${geck.verion}</version>
</dependency>
<dependency>
<groupId>dev.vality.geck</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>migrator</artifactId>
<version>${geck.verion}</version>
</dependency>
<dependency>
<groupId>dev.vality</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>db-common-lib</artifactId>
<version>${db-common-lib.version}</version>
</dependency>
<dependency>
<groupId>dev.vality</groupId>
2021-02-01 09:14:29 +00:00
<artifactId>kafka-common-lib</artifactId>
2021-06-17 14:27:01 +00:00
<version>${kafka-common-lib.version}</version>
2021-02-01 09:14:29 +00:00
</dependency>
<dependency>
<groupId>dev.vality</groupId>
2021-03-09 11:28:36 +00:00
<artifactId>shared-resources</artifactId>
<version>${shared-resources.version}</version>
</dependency>
2021-06-02 09:53:28 +00:00
<dependency>
<groupId>io.github.microutils</groupId>
<artifactId>kotlin-logging-jvm</artifactId>
<version>${kotlin-logging.version}</version>
</dependency>
<dependency>
<groupId>org.mockito.kotlin</groupId>
<artifactId>mockito-kotlin</artifactId>
<version>${mockito-kotlin.version}</version>
<scope>test</scope>
</dependency>
2021-02-01 09:14:29 +00:00
</dependencies>
</dependencyManagement>
2021-03-19 13:53:48 +00:00
<profiles>
<profile>
2021-12-29 07:14:04 +00:00
<id>deploy</id>
2021-03-19 13:53:48 +00:00
<distributionManagement>
<snapshotRepository>
<id>${pubSnapRepoId}</id>
<url>${pubSnapRepo}</url>
</snapshotRepository>
<repository>
<id>${pubRepoId}</id>
<url>${pubRepo}</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>${pubSnapRepoId}</id>
<url>${pubSnapRepo}</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
2021-03-19 13:53:48 +00:00
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.12</version>
2021-03-19 13:53:48 +00:00
<extensions>true</extensions>
<configuration>
<serverId>${pubStagingRepoId}</serverId>
<nexusUrl>${pubStagingRepo}</nexusUrl>
<autoReleaseAfterClose>${autoReleaseAfterClose}</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
2021-12-29 07:14:04 +00:00
<version>3.0.1</version>
2021-03-19 13:53:48 +00:00
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>common</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>env.MVN_PROFILE</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
2021-03-19 13:53:48 +00:00
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
2021-02-01 09:14:29 +00:00
</project>