Skip to content

Commit

Permalink
Rename module class
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbowdashlabs committed Mar 17, 2023
1 parent 14aff41 commit d0eb942
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "de.eldoria"
version = "1.0.0"
version = "1.0.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
* </ul>
* <p>
*/
public class JacksonSpigot extends Module {
public class JacksonBukkit extends Module {
@Override
public String getModuleName() {
return "JacksonBukkit";
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/de/eldoria/jacksonbukkit/SerializationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
public interface SerializationTest {
ObjectMapper JSON = JsonMapper.builder()
.defaultPrettyPrinter(new DefaultPrettyPrinter())
.addModule(new JacksonSpigot())
.addModule(new JacksonBukkit())
.build();
ObjectMapper YAML = YAMLMapper.builder()
.addModule(new JacksonSpigot())
.addModule(new JacksonBukkit())
.build();
ObjectMapper TOML = TomlMapper.builder()
.addModule(new JacksonSpigot())
.addModule(new JacksonBukkit())
.build();

default ObjectMapper json() {
Expand Down

0 comments on commit d0eb942

Please sign in to comment.