Skip to content

Commit

Permalink
Merge pull request #661 from nitram509/issue-659-UnsupportedOperation…
Browse files Browse the repository at this point in the history
…Exception

fix #659 implement a workaround to fix UnsupportedOperationException
  • Loading branch information
nitram509 authored Jan 24, 2024
2 parents 03c69ca + f9670ba commit 10b51d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,9 @@
<goals>
<goal>repackage</goal>
</goals>
<configuration>
<loaderImplementation>CLASSIC</loaderImplementation>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/zeebe/monitor/ZeebeSimpleMonitorApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ public Attributes loadAttributesFromManifest() {
LOG.warn("can't determine version info from manifest, error: " + e.getMessage());
}
} else {
LOG.warn("MANIFEST.MF file not present in classpath; will use 'dev' as version information");
LOG.warn(
"MANIFEST.MF file not present in classpath; will use 'dev' as version information");
}
}
final Attributes attributes = new Attributes();
Expand All @@ -112,5 +113,4 @@ public void addCorsMappings(CorsRegistry registry) {
}
};
}

}

0 comments on commit 10b51d9

Please sign in to comment.