Remove unused dependency, explicitly declare used dependencies
This commit is contained in:
@ -103,6 +103,55 @@
|
||||
<groupId>net.sourceforge.pmd</groupId>
|
||||
<artifactId>pmd-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.github.oowekyala.treeutils</groupId>
|
||||
<artifactId>tree-matchers</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.oowekyala.treeutils</groupId>
|
||||
<artifactId>tree-printers</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.kotlintest</groupId>
|
||||
<artifactId>kotlintest-runner-junit5</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.kotlintest</groupId>
|
||||
<artifactId>kotlintest-assertions</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.kotlintest</groupId>
|
||||
<artifactId>kotlintest-core</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-stdlib</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains</groupId>
|
||||
<artifactId>annotations</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
|
@ -25,9 +25,19 @@
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.scala-lang</groupId>
|
||||
<artifactId>scala-library</artifactId>
|
||||
<version>${scalaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.scalameta</groupId>
|
||||
<artifactId>scalameta_${scalaVersion}</artifactId>
|
||||
<artifactId>parsers_${scalaVersion}</artifactId>
|
||||
<version>${scalameta.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.scalameta</groupId>
|
||||
<artifactId>trees_${scalaVersion}</artifactId>
|
||||
<version>${scalameta.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -25,9 +25,19 @@
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.scala-lang</groupId>
|
||||
<artifactId>scala-library</artifactId>
|
||||
<version>${scalaVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.scalameta</groupId>
|
||||
<artifactId>scalameta_${scalaVersion}</artifactId>
|
||||
<artifactId>parsers_${scalaVersion}</artifactId>
|
||||
<version>${scalameta.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.scalameta</groupId>
|
||||
<artifactId>trees_${scalaVersion}</artifactId>
|
||||
<version>${scalameta.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
Reference in New Issue
Block a user