-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
66 lines (62 loc) · 1.9 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
<parent>
<groupId>com.vmware.pscoe.o11n</groupId>
<artifactId>base-package</artifactId>
<version>2.31.1</version>
</parent>
<modules>
<module>polyglot-python</module>
<module>polyglot-ts</module>
<module>polyglot-ps1</module>
<module>polyglot-all</module>
<module>vro</module>
<module>actions</module>
<module>xml</module>
<module>vrops</module>
<module>cs</module>
<module>abxs-python</module>
<module>abxs-nodejs</module>
<module>abxs-ps1</module>
<module>abx-all</module>
<module>vra</module>
<module>vcd</module>
<module>vrli</module>
<module>base-package</module>
</modules>
<groupId>com.vmware.pscoe.templates.buildtoolsforvmwareariasamples</groupId>
<artifactId>all</artifactId>
<version>1.0.11-SNAPSHOT</version>
<packaging>pom</packaging>
<scm>
<developerConnection>scm:git:ssh://[email protected]:vmware-samples/build-tools-for-vmware-aria-samples.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<generated.from>ts-vra-ng</generated.from>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<skipAssembly>true</skipAssembly>
</configuration>
</plugin>
</plugins>
</build>
</project>