This is an automated email from the ASF dual-hosted git repository. mpochatkin pushed a commit to branch IGNITE-26979 in repository https://gitbox.apache.org/repos/asf/ignite-3.git
commit 98a58bb0721a24218c662d73942900b6ce423d16 Author: Pochatkin Mikhail <[email protected]> AuthorDate: Fri Nov 7 13:08:33 2025 +0300 IGNITE-26979 Fix quiet period --- .teamcity/pom.xml | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/.teamcity/pom.xml b/.teamcity/pom.xml index 529b4b8aab3..01cdefd7616 100644 --- a/.teamcity/pom.xml +++ b/.teamcity/pom.xml @@ -2,6 +2,12 @@ <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> @@ -22,7 +28,7 @@ </repository> <repository> <id>teamcity-server</id> - <url>http://ci.ignite.apache.org/app/dsl-plugins-repository</url> + <url>https://ci.ignite.apache.org/app/dsl-plugins-repository</url> <snapshots> <enabled>true</enabled> </snapshots> @@ -37,25 +43,26 @@ </pluginRepositories> <build> - <sourceDirectory>${basedir}</sourceDirectory> <plugins> <plugin> <artifactId>kotlin-maven-plugin</artifactId> <groupId>org.jetbrains.kotlin</groupId> <version>${kotlin.version}</version> - <configuration/> + <configuration> + <jvmTarget>1.8</jvmTarget> + </configuration> <executions> <execution> <id>compile</id> - <phase>process-sources</phase> + <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> - <phase>process-test-sources</phase> + <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> @@ -100,5 +107,16 @@ <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
