Skip to content

Commit 44fb9ef

Browse files
committed
Update TC DSL version used in TC configs
1 parent ea6e140 commit 44fb9ef

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

main/resources/teamcity/additionalConfiguration.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Use of this source code is governed by the Apache 2.0 License that can be found in the LICENSE.txt file.
44
*/
55

6-
import jetbrains.buildServer.configs.kotlin.v2019_2.Project
6+
import jetbrains.buildServer.configs.kotlin.Project
77

88
fun Project.additionalConfiguration() {
99
}

main/resources/teamcity/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@
7777
<dependencies>
7878
<dependency>
7979
<groupId>org.jetbrains.teamcity</groupId>
80-
<artifactId>configs-dsl-kotlin</artifactId>
80+
<artifactId>configs-dsl-kotlin-latest</artifactId>
8181
<version>${teamcity.dsl.version}</version>
8282
<scope>compile</scope>
8383
</dependency>
8484
<dependency>
8585
<groupId>org.jetbrains.teamcity</groupId>
86-
<artifactId>configs-dsl-kotlin-plugins</artifactId>
86+
<artifactId>configs-dsl-kotlin-plugins-latest</artifactId>
8787
<version>1.0-SNAPSHOT</version>
8888
<type>pom</type>
8989
<scope>compile</scope>

main/resources/teamcity/settings.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import jetbrains.buildServer.configs.kotlin.v2019_2.*
2-
import jetbrains.buildServer.configs.kotlin.v2019_2.buildSteps.*
3-
import jetbrains.buildServer.configs.kotlin.v2019_2.triggers.*
1+
import jetbrains.buildServer.configs.kotlin.*
2+
import jetbrains.buildServer.configs.kotlin.buildSteps.*
3+
import jetbrains.buildServer.configs.kotlin.triggers.*
44

55
/*
66
The settings script is an entry point for defining a TeamCity
@@ -24,7 +24,7 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
2424
'Debug' option is available in the context menu for the task.
2525
*/
2626

27-
version = "2020.1"
27+
version = "2023.05"
2828

2929
project {
3030
// Disable editing of project and build settings from the UI to avoid issues with TeamCity

main/resources/teamcity/utils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Use of this source code is governed by the Apache 2.0 License that can be found in the LICENSE.txt file.
44
*/
55

6-
import jetbrains.buildServer.configs.kotlin.v2019_2.*
6+
import jetbrains.buildServer.configs.kotlin.*
77

88
const val versionSuffixParameter = "versionSuffix"
99
const val teamcitySuffixParameter = "teamcitySuffix"

0 commit comments

Comments
 (0)