mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-14 16:42:46 +01:00
104 lines
2.9 KiB
XML
104 lines
2.9 KiB
XML
<?xml version="1.0"?>
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<name>IdeaVim Config DSL Script</name>
|
|
<groupId>IdeaVim</groupId>
|
|
<artifactId>IdeaVim_dsl</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<parent>
|
|
<groupId>org.jetbrains.teamcity</groupId>
|
|
<artifactId>configs-dsl-kotlin-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jetbrains-all</id>
|
|
<url>https://download.jetbrains.com/teamcity-repository</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>teamcity-server</id>
|
|
<url>https://teamcity.jetbrains.com/app/dsl-plugins-repository</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>JetBrains</id>
|
|
<url>https://download.jetbrains.com/teamcity-repository</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<build>
|
|
<sourceDirectory>${basedir}</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<version>${kotlin.version}</version>
|
|
|
|
<configuration/>
|
|
<executions>
|
|
<execution>
|
|
<id>compile</id>
|
|
<phase>process-sources</phase>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>test-compile</id>
|
|
<phase>process-test-sources</phase>
|
|
<goals>
|
|
<goal>test-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>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jetbrains.teamcity</groupId>
|
|
<artifactId>configs-dsl-kotlin</artifactId>
|
|
<version>${teamcity.dsl.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.teamcity</groupId>
|
|
<artifactId>configs-dsl-kotlin-plugins</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>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-script-runtime</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |