Swich to public maven repo (#7)

This commit is contained in:
Pavel Popov 2020-07-10 14:29:47 +03:00 committed by GitHub
parent dbe5f74fc0
commit abcd6f0e91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 7 deletions

2
Jenkinsfile vendored
View File

@ -8,6 +8,6 @@ build('db-common-lib', 'docker-host') {
javaLibPipeline = load("build_utils/jenkins_lib/pipeJavaLib.groovy")
}
def buildImageTag = "fcf116dd775cc2e91bffb6a36835754e3f2d5321"
def buildImageTag = "b04c5291d101132e53e578d96e1628d2e6dab0c0"
javaLibPipeline(buildImageTag)
}

@ -1 +1 @@
Subproject commit ea4aa042f482551d624fd49a570d28488f479e93
Subproject commit 5cb25f049c719a608276a99fc4fbe852187019ca

36
pom.xml
View File

@ -6,19 +6,45 @@
<parent>
<groupId>com.rbkmoney</groupId>
<artifactId>parent</artifactId>
<version>1.0.0</version>
<version>1.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>db-common-lib</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.3</version>
<name>db-common-lib</name>
<description>Abstract dao and row mappers</description>
<url>https://github.com/rbkmoney/db-common-lib</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>Vitaly Banin</name>
<email>v.banin@rbkmoney.com</email>
<organization>RBK.money</organization>
<organizationUrl>https://rbk.money</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/rbkmoney/db-common-lib.git</connection>
<developerConnection>scm:git:ssh://github.com/rbkmoney/db-common-lib.git</developerConnection>
<url>https://github.com/rbkmoney/db-common-lib/tree/master</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jooq.version>3.11.5</jooq.version>
<geck.common.version>0.6.9</geck.common.version>
<jooq.version>3.13.2</jooq.version>
<geck.common.version>0.6.11</geck.common.version>
</properties>
<dependencyManagement>
@ -35,7 +61,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<version>1.5.10.RELEASE</version>
<version>2.3.0.RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>