neboskreb / red-and-blue

JUnit 5 extension for easy injection of Red and Blue objects
Apache License 2.0
1 stars 0 forks source link

Change dependency scope to `test` #26

Open neboskreb opened 8 months ago

neboskreb commented 8 months ago

Currently, at Maven Central it shows up as production dependency:

// https://mvnrepository.com/artifact/io.github.neboskreb/red-and-blue
implementation 'io.github.neboskreb:red-and-blue:1.1.0'

Update the Maven metadata so the scope is shown as test:

// https://mvnrepository.com/artifact/io.github.neboskreb/red-and-blue
testImplementation 'io.github.neboskreb:red-and-blue:1.1.0'
neboskreb commented 1 month ago

Discussion here indicates that this is not a Maven feature, but mvnrepository's sugaring.

This answer on SO seems to confirm this.