Skip to content

Commit

Permalink
remove extraLibs
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhuynh27 committed Dec 20, 2021
1 parent 5a6b635 commit fd1bd2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Spring is very opinionated, it's easy to be locked-in Spring ecosystem. Also, it

```groovy
dependencies {
implementation 'dev.keva:keva-ioc:1.0.0'
implementation 'dev.keva:keva-ioc:1.0.1'
}
```

Expand Down
19 changes: 4 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,19 @@ javadoc {
}

group 'dev.keva'
version '1.0.0'

configurations {
extraLibs
}

jar {
from {
configurations.extraLibs.collect { it.isDirectory() ? it : zipTree(it) }
}
}
version '1.0.1'

dependencies {
// SLF4J as a facade
implementation 'org.slf4j:slf4j-api:1.7.32'

implementation 'org.reflections:reflections:0.10.2'
extraLibs 'org.reflections:reflections:0.10.2'

// JUnit
testImplementation('org.junit.jupiter:junit-jupiter:5.8.1')
testImplementation('org.junit.jupiter:junit-jupiter:5.8.2')

testImplementation 'ch.qos.logback:logback-classic:1.2.6'
testImplementation 'ch.qos.logback:logback-core:1.2.6'
testImplementation 'ch.qos.logback:logback-classic:1.2.8'
testImplementation 'ch.qos.logback:logback-core:1.2.8'
}

test {
Expand Down

0 comments on commit fd1bd2a

Please sign in to comment.