-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
61 lines (54 loc) · 2.28 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
<?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>
<artifactId>docker-o11n-maven</artifactId>
<groupId>dlinsley</groupId>
<packaging>package</packaging>
<version>1.0.0-SNAPSHOT</version>
<properties>
<!-- vCO packages are signed. Create your own JKS keystore that contains a key-pair under the alias _DunesRSA_Alias_ -->
<!-- This keystore is meant for easier initial setup and should not be used in production -->
<keystoreLocation>archetype.keystore</keystoreLocation>
<keystorePassword>password123</keystorePassword>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<vco.version>7.4.0</vco.version>
<repoUrl>https://192.168.241.130:8281/vco-repo</repoUrl>
</properties>
<repositories>
<repository>
<id>added-by-archetype</id>
<name>This repo was added by the archetype. There are better way to handle it</name>
<url>${repoUrl}</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>added-by-archetype</id>
<name>This repo was added by the archetype. There are better way to handle it</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>package.skeleton</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>o11n-maven-${project.version}</packageFileName>
<allowedMask>vef</allowedMask>
<exportVersionHistory>false</exportVersionHistory>
</configuration>
</plugin>
</plugins>
</build>
</project>