-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
69 lines (62 loc) · 2.34 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Maybe you'd like to change this to point to your organization's groupId-->
<groupId>workflow-designer-exported</groupId>
<artifactId>com.vmware.pso.vrocontrolcenter</artifactId>
<packaging>package</packaging>
<version>1.0.0-SNAPSHOT</version>
<properties>
<keystoreLocation>package-signing-cert.jks</keystoreLocation>
<keystorePassword>password</keystorePassword>
<vco.version>7.4.0</vco.version>
<!-- change to vf for releases: it will lock the workflows -->
<allowedMask>vef</allowedMask>
<repoUrl>http://192.168.241.130:8280/vco-repo</repoUrl>
</properties>
<repositories>
<repository>
<id>added-by-archetype</id>
<name>This repo was added by the 'Expand to file system'</name>
<url>${repoUrl}</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>added-by-archetype</id>
<name>This repo was added by the 'Expand to file system'</name>
<url>${repoUrl}</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>com.vmware.o11n.mojo.pkg</groupId>
<artifactId>maven-o11n-package-plugin</artifactId>
<version>${vco.version}</version>
<extensions>true</extensions>
<configuration>
<packageName>com.vmware.pso.vrocontrolcenter</packageName>
<!-- Set the local path to the *.vmokeystore file used to sign the content -->
<keystoreLocation>${keystoreLocation}</keystoreLocation>
<keystorePassword>${keystorePassword}</keystorePassword>
<includes>
<include>**/*.element_info.xml</include>
</includes>
<packageFileName>${project.artifactId}-${project.version}</packageFileName>
<allowedMask>${allowedMask}</allowedMask>
<exportVersionHistory>false</exportVersionHistory>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>concourseDistOut</id>
<build>
<directory>../dist</directory>
</build>
</profile>
</profiles>
</project>