Skip to content

Commit

Permalink
fix author for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rvullriede committed Nov 8, 2023
1 parent 3b9f5c6 commit 7253481
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.osslabz</groupId>
<artifactId>coingecko-java</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>Allows to decode raw input data from an EVM smart contract call (on Ethereum or a compatible chain like
Expand All @@ -15,7 +15,7 @@
<url>https://github.com/osslabz/coingecko-client</url>

<properties>
<maven.compiler.release>1.8</maven.compiler.release>
<maven.compiler.release>8</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<retrofit.version>2.9.0</retrofit.version>
Expand Down Expand Up @@ -43,7 +43,7 @@
<url>https://github.com/osslabz/coingecko-client</url>
<tag>HEAD</tag>
</scm>

<dependencies>

<dependency>
Expand Down Expand Up @@ -132,6 +132,19 @@
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
</plugins>
</build>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
Expand Down

0 comments on commit 7253481

Please sign in to comment.