89 lines
3.1 KiB
XML
89 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>ru.dot-dot.ci</groupId>
|
|
<artifactId>ci-templates</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<kotlin.version>1.9.10</kotlin.version>
|
|
<teamcity.dsl.version>2024.07</teamcity.dsl.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jetbrains-all</id>
|
|
<url>https://download.jetbrains.com/teamcity-repository</url>
|
|
</repository>
|
|
<repository>
|
|
<id>mavenCentral</id>
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>jetbrains-all</id>
|
|
<url>https://download.jetbrains.com/teamcity-repository</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jetbrains.teamcity</groupId>
|
|
<artifactId>configs-dsl-kotlin-latest</artifactId>
|
|
<version>${teamcity.dsl.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.teamcity</groupId>
|
|
<artifactId>configs-dsl-kotlin-plugins-latest</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<type>pom</type>
|
|
<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-script-runtime</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>.</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>compile</id>
|
|
<phase>compile</phase>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jetbrains.teamcity</groupId>
|
|
<artifactId>teamcity-configs-maven-plugin</artifactId>
|
|
<version>${teamcity.dsl.version}</version>
|
|
<configuration>
|
|
<format>kotlin</format>
|
|
<dstDir>target/generated-configs</dstDir>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|