Move dependency json-smart into test-Scope

Issue #3 new
Thomas Zimmermann created an issue

It's not used at runtime and could cause version conflicts with projects that depend on it (transitive or directly).

The only change is in pom.xml.

Change (right now)

<dependency>
        <groupId>net.minidev</groupId>
        <artifactId>json-smart</artifactId>
        <version>1.3.1</version>
</dependency>

to:

<dependency>
        <groupId>net.minidev</groupId>
        <artifactId>json-smart</artifactId>
        <version>1.3.1</version>
        <scope>test</scope>
</dependency>

Comments (2)

  1. Log in to comment