Skip to content

Commit c272280

Browse files
Refactor
1 parent 950ad5c commit c272280

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,24 @@
77
<groupId>pl.dmichalski</groupId>
88
<artifactId>algorithms-and-data-structures</artifactId>
99
<version>1.0-SNAPSHOT</version>
10+
<name>Algorithms and data structure</name>
1011

1112
<properties>
1213
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
<kotlin.version>1.4.10</kotlin.version>
1315
<spock-core.version>1.1-groovy-2.4</spock-core.version>
1416
<groovy-all.version>2.4.11</groovy-all.version>
15-
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
1617
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
1718
<gmavenplus-plugin.version>1.10.0</gmavenplus-plugin.version>
18-
<kotlin.version>1.4.10</kotlin.version>
1919
<kotlin-maven-plugin.jvmTarget>11</kotlin-maven-plugin.jvmTarget>
2020
</properties>
2121

2222
<dependencies>
23+
<dependency>
24+
<groupId>org.jetbrains.kotlin</groupId>
25+
<artifactId>kotlin-stdlib</artifactId>
26+
<version>${kotlin.version}</version>
27+
</dependency>
2328
<dependency>
2429
<groupId>org.spockframework</groupId>
2530
<artifactId>spock-core</artifactId>
@@ -32,11 +37,6 @@
3237
<version>${groovy-all.version}</version>
3338
<scope>test</scope>
3439
</dependency>
35-
<dependency>
36-
<groupId>org.jetbrains.kotlin</groupId>
37-
<artifactId>kotlin-stdlib</artifactId>
38-
<version>${kotlin.version}</version>
39-
</dependency>
4040
</dependencies>
4141

4242
<build>

0 commit comments

Comments
 (0)