Skip to content

Commit

Permalink
chore: updated kotlin to 1.9.20 and updated maven-gpg-plugin to 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Lycoon committed Nov 17, 2023
1 parent 2e19f13 commit c68968a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 47 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/deploy-ci.yml

This file was deleted.

39 changes: 18 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,16 @@
</executions>
</plugin>

<!-- Maven Javadoc plugin -->
<!-- Kotlin-specific documentation generation plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.2</version>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.9.10</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>pre-site</phase>
<goals>
<goal>jar</goal>
<goal>dokka</goal>
</goals>
</execution>
</executions>
Expand All @@ -118,21 +118,13 @@
</configuration>
</plugin>

<!-- Maven Kotlin plugin -->
<!-- Kotlin plugin -->
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>1.6.10</version>
<version>1.9.20</version>

<executions>
<execution>
<id>compile</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<extensions>true</extensions>

<configuration>
<compilerPlugins>
Expand All @@ -144,7 +136,12 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-serialization</artifactId>
<version>1.6.0</version>
<version>1.9.20</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-json</artifactId>
<version>1.6.1</version>
</dependency>
</dependencies>
</plugin>
Expand All @@ -157,9 +154,9 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<kotlin.version>1.6.10</kotlin.version>
<serialization.version>1.3.1</serialization.version>
<java.version>1.8</java.version>
<kotlin.version>1.9.20</kotlin.version>
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
<serialization.version>1.6.1</serialization.version>
</properties>

<!-- Profiles -->
Expand Down

0 comments on commit c68968a

Please sign in to comment.