Skip to content

Commit

Permalink
Reverting breaking dependencies: seems like latest reflections librar…
Browse files Browse the repository at this point in the history
…y has a bug which prevents from subtypes analysis. This update downgrades to a stable version.
  • Loading branch information
sskorol committed Aug 26, 2021
1 parent e1d98e0 commit 5a435bc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ configurations {
dependencies {
agent 'org.aspectj:aspectjweaver:1.9.6'
implementation 'io.github.sskorol:test-data-supplier:1.9.3'
implementation 'io.github.sskorol:test-data-supplier:1.9.4'
}
test {
Expand Down Expand Up @@ -189,7 +189,7 @@ configurations {
dependencies {
agent 'org.aspectj:aspectjweaver:1.9.6'
implementation 'io.github.sskorol:test-data-supplier:1.9.3'
implementation 'io.github.sskorol:test-data-supplier:1.9.4'
}
compileJava {
Expand Down Expand Up @@ -480,7 +480,7 @@ Note that in case if you want to manage **DataProviderTransformer** manually, yo

```groovy
dependencies {
implementation 'io.github.sskorol:test-data-supplier:1.9.3:spi-off'
implementation 'io.github.sskorol:test-data-supplier:1.9.4:spi-off'
}
```

Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ dependencies {
api("one.util:streamex:0.7.3")
api("io.vavr:vavr:1.0.0-alpha-3")
api("org.aspectj:aspectjrt:${aspectjVersion}")
api("org.reflections:reflections:0.9.12")
// Don't update to 0.9.12 due to bugs
api("org.reflections:reflections:0.9.11")
api("org.apache.commons:commons-csv:1.9.0")
api("com.google.code.gson:gson:2.8.8")
api("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${jacksonVersion}")
Expand Down
12 changes: 6 additions & 6 deletions gradle/maven-publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ release {
tagTemplate = '${version}'
}

// Required for publishing to Sonatype
java {
withJavadocJar()
withSourcesJar()
}

jar {
inputs.property("moduleName", moduleName)
manifest {
Expand Down Expand Up @@ -102,6 +96,12 @@ artifacts {
archives javadocJar
}

// Required for publishing to Sonatype
java {
withJavadocJar()
withSourcesJar()
}

afterEvaluate {
publishing {
publications {
Expand Down

0 comments on commit 5a435bc

Please sign in to comment.