-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpom.xml
100 lines (96 loc) · 3.97 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jetbrains.teamcity</groupId>
<artifactId>teamcity-kubernetes-plugin</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<properties>
<teamcity.version>LOCAL-SNAPSHOT</teamcity.version>
<kotlin.version>1.9.22</kotlin.version>
<local.repo.path>local-repo</local.repo.path>
<revision>1.0-SNAPSHOT</revision>
</properties>
<repositories>
<repository>
<id>local-teamcity-artifacts</id>
<url>file://${local.repo.path}</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>TeamCity</id>
<url>https://download.jetbrains.com/teamcity-repository/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>TeamCity</id>
<url>https://download.jetbrains.com/teamcity-repository</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>teamcity-space</id>
<url>https://packages.jetbrains.team/maven/p/tc/maven</url>
</repository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<inherited>false</inherited>
<version>2.4.0</version>
<configuration>
<thirdPartyFilename>third-party-libraries.json</thirdPartyFilename>
<fileTemplate>${maven.multiModuleProjectDirectory}/license-third-party.ftl</fileTemplate>
<excludedGroups>tc-sbt-runner.*|com.jetbrains.teamcity.*|org.jetbrains.teamcity.*|org.jetbrains.kotlin.*|org.jetbrains.kotlinx.*|org.jetbrains.intellij.*|com.jetbrains.intellij.*|jetbrains.ring.*</excludedGroups>
<excludedArtifacts>jcip-annotations</excludedArtifacts>
<force>true</force>
<includedScopes>compile,runtime</includedScopes>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.teamcity</groupId>
<artifactId>teamcity-sdk-maven-plugin</artifactId>
<version>0.2</version>
<configuration>
<teamcityDir>/home/user/projects/teamcity/2017.2.x/buildserver/.idea_artifacts/dist-teamcity-tomcat</teamcityDir>
<serverDebugStr>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=10111</serverDebugStr>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>deploy-to-local-k8s-repo</id>
<goals>
<goal>deploy</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>teamcity-kubernetes-plugin-server</module>
<module>teamcity-kubernetes-plugin-agent</module>
<module>teamcity-kubernetes-plugin-common</module>
<module>build</module>
</modules>
</project>