This is an automated email from the ASF dual-hosted git repository.
mpochatkin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 385e65d2e9f IGNITE-27074 Fix kotlin version for TC dsl (#6991)
385e65d2e9f is described below
commit 385e65d2e9f7c4c848d235d75c15d79f4da90b13
Author: Mikhail <[email protected]>
AuthorDate: Mon Nov 17 13:51:43 2025 +0300
IGNITE-27074 Fix kotlin version for TC dsl (#6991)
---
.teamcity/pom.xml | 28 +++++-----------------------
1 file changed, 5 insertions(+), 23 deletions(-)
diff --git a/.teamcity/pom.xml b/.teamcity/pom.xml
index 01cdefd7616..529b4b8aab3 100644
--- a/.teamcity/pom.xml
+++ b/.teamcity/pom.xml
@@ -2,12 +2,6 @@
<project>
<modelVersion>4.0.0</modelVersion>
<name>ApacheIgnite3 Config DSL Script</name>
-
- <properties>
- <kotlin.version>2.2.0</kotlin.version>
- </properties>
-
-
<groupId>ApacheIgnite3</groupId>
<artifactId>ApacheIgnite3_dsl</artifactId>
<version>1.0-SNAPSHOT</version>
@@ -28,7 +22,7 @@
</repository>
<repository>
<id>teamcity-server</id>
- <url>https://ci.ignite.apache.org/app/dsl-plugins-repository</url>
+ <url>http://ci.ignite.apache.org/app/dsl-plugins-repository</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
@@ -43,26 +37,25 @@
</pluginRepositories>
<build>
+ <sourceDirectory>${basedir}</sourceDirectory>
<plugins>
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
<version>${kotlin.version}</version>
- <configuration>
- <jvmTarget>1.8</jvmTarget>
- </configuration>
+ <configuration/>
<executions>
<execution>
<id>compile</id>
- <phase>compile</phase>
+ <phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
- <phase>test-compile</phase>
+ <phase>process-test-sources</phase>
<goals>
<goal>test-compile</goal>
</goals>
@@ -107,16 +100,5 @@
<version>${kotlin.version}</version>
<scope>compile</scope>
</dependency>
- <dependency>
- <groupId>org.jetbrains.kotlin</groupId>
- <artifactId>kotlin-stdlib-jdk8</artifactId>
- <version>${kotlin.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jetbrains.kotlin</groupId>
- <artifactId>kotlin-test</artifactId>
- <version>${kotlin.version}</version>
- <scope>test</scope>
- </dependency>
</dependencies>
</project>
\ No newline at end of file