Remove unused dependency, explicitly declare used dependencies

This commit is contained in:
Andreas Dangel
2020-07-02 15:12:31 +02:00
parent 80d9e18011
commit 370c0b0b6d
34 changed files with 390 additions and 313 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>