File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed
main/kotlin/org/xpathqs/core/reflection
test/kotlin/org/xpathqs/core/reflection/parser Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 2323import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2424import org.gradle.api.tasks.testing.logging.TestLogEvent
2525
26- version = " 0.1.0 "
26+ version = " 0.1.1 "
2727group = " org.xpathqs"
2828
2929plugins {
@@ -57,7 +57,8 @@ dependencies {
5757 implementation(" io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0" )
5858 implementation(" org.jetbrains.kotlin:kotlin-reflect:1.5.0" )
5959 implementation(" org.yaml:snakeyaml:1.28" )
60- implementation(" org.reflections:reflections:0.9.12" )
60+ implementation(" net.oneandone.reflections8:reflections8:0.11.7" )
61+
6162 implementation(" org.xpathqs:gwt:0.1.1" )
6263
6364 testImplementation(kotlin(" test-junit5" ))
Original file line number Diff line number Diff line change 11[ ![ CI/CD] ( https://github.com/nachg/xpathqs-core/actions/workflows/build.yml/badge.svg )] ( https://github.com/nachg/xpathqs-core/actions/workflows/build.yml )
2- [ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/org.xpathqs/core/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/org.xpathqs/xcore / )
2+ [ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/org.xpathqs/core/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/org.xpathqs/core / )
33![ GitHub top language] ( https://img.shields.io/github/languages/top/nachg/xpathqs-core )
44[ ![ Coverage] ( .github/badges/jacoco.svg )] ( jacoco.svg )
55
Original file line number Diff line number Diff line change 2222
2323package org.xpathqs.core.reflection
2424
25- import org.reflections .Reflections
25+ import org.reflections8 .Reflections
2626import org.xpathqs.core.selector.block.Block
2727
2828/* *
Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ class ObjectWithClassArgBlockTest {
3737 fun parse () {
3838 SelectorParser (PageWithBlockArgMembers )
3939 .parse()
40+
41+ SelectorParser (PageWithBlockMembers )
42+ .parse()
4043 }
4144
4245 @Test
Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ import org.xpathqs.xpathShouldBe
3737class ObjectWithClassBlockTest {
3838 @BeforeEach
3939 fun parse () {
40- SelectorParser (PageWithBlockMembers ).parse()
40+ SelectorParser (PageWithBlockMembers )
41+ .parse()
4142 }
4243
4344 @Test
You can’t perform that action at this time.
0 commit comments