Skip to content

Commit

Permalink
Revert last 2 commits to get build working again
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 4, 2025
1 parent eacf3d5 commit 3e601ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<artifactId>jackson-module-kotlin</artifactId>
<name>jackson-module-kotlin</name>
<version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<packaging>bundle</packaging>
<description>Add-on module for Jackson (https://github.com/FasterXML/jackson/) to support
Kotlin language, specifically introspection of method/constructor parameter names,
without having to add explicit property name annotation.
Expand Down
8 changes: 3 additions & 5 deletions src/moditect/module-info.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
// Kotlin module-info for Main artifact
module tools.jackson.module.kotlin
{
requires java.desktop; // for @Transient
requires java.desktop;

requires kotlin.reflect;
requires transitive kotlin.stdlib;
requires org.jetbrains.annotations;
requires kotlin.stdlib;

requires com.fasterxml.jackson.annotation;
requires tools.jackson.core;
requires transitive tools.jackson.databind;
requires tools.jackson.databind;

exports tools.jackson.module.kotlin;

Expand Down

0 comments on commit 3e601ac

Please sign in to comment.