-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpom.xml
63 lines (63 loc) · 2.21 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
<?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>ee.elinyo.teamcity.plugins</groupId>
<artifactId>ansible-runner</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<teamcity-version>9.0.3</teamcity-version>
</properties>
<repositories>
<repository>
<id>JetBrains</id>
<url>http://repository.jetbrains.com/all</url>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<releaseProfiles>releases</releaseProfiles>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:git:[email protected]:andreizhuk/tc-ansible-runner.git</connection>
<developerConnection>scm:git:[email protected]:andreizhuk/tc-ansible-runner.git</developerConnection>
<url>https://github.com/andreizhuk/tc-ansible-runner</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>ansible-log-processor</module>
<module>ansible-runner-server</module>
<module>ansible-runner-agent</module>
<module>ansible-runner-common</module>
<module>build</module>
</modules>
</project>