Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javabrett/flyway-issues-1922
Test code for issue https://github.com/flyway/flyway/issues/1922
https://github.com/javabrett/flyway-issues-1922
Last synced: about 1 month ago
JSON representation
Test code for issue https://github.com/flyway/flyway/issues/1922
- Host: GitHub
- URL: https://github.com/javabrett/flyway-issues-1922
- Owner: javabrett
- Created: 2018-02-11T07:51:14.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-20T00:50:12.000Z (almost 7 years ago)
- Last Synced: 2024-10-04T21:41:15.876Z (3 months ago)
- Language: Java
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test-code for Flyway issue 1922
Test-code demonstrating issue https://github.com/flyway/flyway/issues/1922 .
Running `./gradlew clean assemble test` will cause a deployment failure in embedded Glassfish
caused by:```
Caused by: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
at org.flywaydb.core.internal.util.logging.slf4j.Slf4jLogCreator.createLogger(Slf4jLogCreator.java:27)
at org.flywaydb.core.api.logging.LogFactory.getLog(LogFactory.java:82)
at org.flywaydb.core.internal.util.ClassUtils.(ClassUtils.java:37)
at org.flywaydb.core.internal.util.FeatureDetector.isSlf4jAvailable(FeatureDetector.java:96)
at org.flywaydb.core.api.logging.LogFactory.getLog(LogFactory.java:71)
at org.flywaydb.core.internal.util.FeatureDetector.(FeatureDetector.java:25)
at org.flywaydb.core.api.logging.LogFactory.getLog(LogFactory.java:68)
at org.flywaydb.core.Flyway.(Flyway.java:72)
at test.flywaydb.ContextListener.contextInitialized(ContextListener.java:26)
```