aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pom.xml
blob: 8584b10fcb406ae0e838c5d9f06469f20e8a6449 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="512px" height="512px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
	<path d="M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z"/>
	<rect x="72" y="96" width="368" height="16"/>
	<rect x="104" y="64" width="304" height="16"/>
</g>
</svg>
uage governing permissions and limitations under the License. SPDX-License-Identifier: Apache-2.0 ============LICENSE_END========================================================= --> <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>org.onap.policy.pap</groupId> <artifactId>policy-pap</artifactId> <version>2.6.4-SNAPSHOT</version> </parent> <artifactId>pap-packages</artifactId> <packaging>pom</packaging> <name>${project.artifactId}</name> <description>The module for packaging the PAP component.</description> <properties> <!-- There is no code in this sub-module, only holds interfaces. So skip sonar. --> <sonar.skip>true</sonar.skip> </properties> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <modules> <module>policy-pap-tarball</module> </modules> </profile> <profile> <id>docker</id> <modules> <module>policy-pap-tarball</module> <module>policy-pap-docker</module> </modules> <properties> <docker.skip.push>false</docker.skip.push> </properties> </profile> </profiles> </project>