woody_java/pom.xml
renovate[bot] f8a69d29d0
Update dependency org.slf4j:slf4j-api to v1.7.32 (#11)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-12-27 20:00:22 +03:00

68 lines
2.2 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">
<parent>
<groupId>com.rbkmoney</groupId>
<artifactId>parent</artifactId>
<version>1.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>com.rbkmoney.woody</groupId>
<artifactId>woody</artifactId>
<version>1.1.23</version>
<name>Woody Java</name>
<description>Java implementation for Woody spec</description>
<url>https://github.com/rbkmoney/woody_java</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Pavel Popov</name>
<email>p.popov@rbkmoney.com</email>
<organization>RBK.money</organization>
<organizationUrl>https://rbk.money</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/rbkmoney/woody_java.git</connection>
<developerConnection>scm:git:ssh://github.com/rbkmoney/woody_java.git</developerConnection>
<url>https://github.com/rbkmoney/woody_java/tree/master</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>woody-api</module>
<module>woody-thrift</module>
<module>libthrift</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.rbkmoney.woody</groupId>
<artifactId>woody-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>