Skip to content

Commit f20782f

Browse files
authored
IGNITE-26979 Fix quiet period (#6920)
1 parent 42301d5 commit f20782f

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

.teamcity/pom.xml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
<project>
33
<modelVersion>4.0.0</modelVersion>
44
<name>ApacheIgnite3 Config DSL Script</name>
5+
6+
<properties>
7+
<kotlin.version>2.2.0</kotlin.version>
8+
</properties>
9+
10+
511
<groupId>ApacheIgnite3</groupId>
612
<artifactId>ApacheIgnite3_dsl</artifactId>
713
<version>1.0-SNAPSHOT</version>
@@ -22,7 +28,7 @@
2228
</repository>
2329
<repository>
2430
<id>teamcity-server</id>
25-
<url>http://ci.ignite.apache.org/app/dsl-plugins-repository</url>
31+
<url>https://ci.ignite.apache.org/app/dsl-plugins-repository</url>
2632
<snapshots>
2733
<enabled>true</enabled>
2834
</snapshots>
@@ -37,25 +43,26 @@
3743
</pluginRepositories>
3844

3945
<build>
40-
<sourceDirectory>${basedir}</sourceDirectory>
4146
<plugins>
4247
<plugin>
4348
<artifactId>kotlin-maven-plugin</artifactId>
4449
<groupId>org.jetbrains.kotlin</groupId>
4550
<version>${kotlin.version}</version>
4651

47-
<configuration/>
52+
<configuration>
53+
<jvmTarget>1.8</jvmTarget>
54+
</configuration>
4855
<executions>
4956
<execution>
5057
<id>compile</id>
51-
<phase>process-sources</phase>
58+
<phase>compile</phase>
5259
<goals>
5360
<goal>compile</goal>
5461
</goals>
5562
</execution>
5663
<execution>
5764
<id>test-compile</id>
58-
<phase>process-test-sources</phase>
65+
<phase>test-compile</phase>
5966
<goals>
6067
<goal>test-compile</goal>
6168
</goals>
@@ -100,5 +107,16 @@
100107
<version>${kotlin.version}</version>
101108
<scope>compile</scope>
102109
</dependency>
110+
<dependency>
111+
<groupId>org.jetbrains.kotlin</groupId>
112+
<artifactId>kotlin-stdlib-jdk8</artifactId>
113+
<version>${kotlin.version}</version>
114+
</dependency>
115+
<dependency>
116+
<groupId>org.jetbrains.kotlin</groupId>
117+
<artifactId>kotlin-test</artifactId>
118+
<version>${kotlin.version}</version>
119+
<scope>test</scope>
120+
</dependency>
103121
</dependencies>
104122
</project>

0 commit comments

Comments
 (0)