decrease java version

This commit is contained in:
Anatoly Karlov 2023-10-13 18:14:16 +03:00
parent caa860f0eb
commit 094dee7235
4 changed files with 38 additions and 6 deletions

View File

@ -7,4 +7,4 @@ on:
jobs:
build:
uses: valitydev/base-workflow/.github/workflows/maven-thrift-build.yml@v1
uses: valitydev/java-workflow/.github/workflows/maven-thrift-build.yml@v1

View File

@ -3,11 +3,11 @@ name: Java deploy
on:
push:
branches:
- master
- main
- 'master'
- 'main'
jobs:
build:
deploy:
uses: valitydev/java-workflow/.github/workflows/maven-thrift-deploy.yml@v1
secrets:
server-username: ${{ secrets.OSSRH_USERNAME }}

36
pom.xml
View File

@ -7,7 +7,7 @@
<parent>
<groupId>dev.vality</groupId>
<artifactId>library-parent-pom</artifactId>
<version>2.0.0</version>
<version>1.0.3</version>
</parent>
<artifactId>columbus-proto</artifactId>
@ -17,6 +17,28 @@
<name>columbus-proto</name>
<description>Generates jar artifact containing compiled thrift classes based on generated thrift IDL files
</description>
<url>https://github.com/valitydev/columbus-proto</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<email>devs@vality.dev</email>
<organization>Vality</organization>
<organizationUrl>https://vality.dev</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/valitydev/columbus-proto</connection>
<developerConnection>scm:git:ssh://github.com/valitydev/columbus-proto</developerConnection>
<url>https://github.com/valitydev/columbus-proto/tree/master</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -39,6 +61,16 @@
<build>
<finalName>${project.artifactId}</finalName>
<resources>
<resource>
<directory>${project.basedir}/proto</directory>
<targetPath>${project.build.outputDirectory}/proto</targetPath>
<includes>
<include>*.thrift</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<!-- THRIFT -->
<plugin>
@ -63,7 +95,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>