|
| 1 | +// Kotline module-info for (unit) Tests |
| 2 | +module com.fasterxml.jackson.kotlin |
| 3 | +{ |
| 4 | + // Since we are not split from Main artifact, will not |
| 5 | + // need to depend on Main artifact -- but need its dependencies |
| 6 | + |
| 7 | + requires java.desktop; |
| 8 | + |
| 9 | + requires kotlin.reflect; |
| 10 | + requires kotlin.stdlib; |
| 11 | + requires org.jetbrains.annotations; |
| 12 | + |
| 13 | + requires com.fasterxml.jackson.annotation; |
| 14 | + requires tools.jackson.databind; |
| 15 | + |
| 16 | + // Additional test lib/framework dependencies |
| 17 | + requires junit; // JUnit 4 |
| 18 | + |
| 19 | + // Other test deps |
| 20 | + |
| 21 | + // Further, need to open up test packages for JUnit et al |
| 22 | + |
| 23 | + opens tools.jackson.module.kotlin; |
| 24 | + opens tools.jackson.module.kotlin.kogeraIntegration; |
| 25 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser; |
| 26 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass; |
| 27 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer; |
| 28 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer.byAnnotation; |
| 29 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer.byAnnotation.specifiedForProperty; |
| 30 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.jsonCreator; |
| 31 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.nonNullObject; |
| 32 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.nullableObject; |
| 33 | + opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.primitive; |
| 34 | + opens tools.jackson.module.kotlin.test; |
| 35 | + opens tools.jackson.module.kotlin.test.github; |
| 36 | + opens tools.jackson.module.kotlin.test.github.failing; |
| 37 | + opens tools.jackson.module.kotlin.test.github.parameterSize; |
| 38 | +} |
0 commit comments