blob: 861e8fb9afdac6845ac45ecfe2647d1fa6f8a1ec [file] [log] [blame]
Pamela Dragosha974aa02017-02-14 19:31:53 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Guo Ruijingf8a620d2017-07-28 08:21:14 +00004 ONAP Policy Engine - Common Modules
Pamela Dragosha974aa02017-02-14 19:31:53 -05005 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
22<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25
26 <modelVersion>4.0.0</modelVersion>
27
Pamela Dragosha974aa02017-02-14 19:31:53 -050028 <artifactId>site-manager</artifactId>
29 <packaging>jar</packaging>
30
31 <parent>
Guo Ruijingf8a620d2017-07-28 08:21:14 +000032 <groupId>org.onap.policy.common</groupId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050033 <artifactId>common-modules</artifactId>
Pamela Dragoshd907e2a2017-11-15 06:50:52 -050034 <version>1.1.2-SNAPSHOT</version>
Pamela Dragosha974aa02017-02-14 19:31:53 -050035 </parent>
36
37 <name>site-manager</name>
38
Pamela Dragosha974aa02017-02-14 19:31:53 -050039 <build>
40 <plugins>
41 <plugin>
42 <artifactId>maven-resources-plugin</artifactId>
43 <version>2.6</version>
44 <executions>
45 <execution>
46 <id>copy-resources</id>
47 <goals>
48 <goal>copy-resources</goal>
49 </goals>
50 <phase>validate</phase>
51 <configuration>
52 <outputDirectory>target/files</outputDirectory>
53 <resources>
54 <resource>
55 <directory>src/main/files</directory>
56 <filtering>true</filtering>
57 </resource>
58 </resources>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-shade-plugin</artifactId>
66 <version>1.4</version>
67 <executions>
68 <execution>
69 <phase>package</phase>
70 <goals>
71 <goal>shade</goal>
72 </goals>
Magnusen, Drew (dm741q)e7bd0932017-07-26 14:01:25 -050073 <configuration>
74 <artifactSet>
75 <excludes>
76 <exclude>org.eclipse.persistence:javax.persistence</exclude>
77 </excludes>
78 </artifactSet>
79 </configuration>
Pamela Dragosha974aa02017-02-14 19:31:53 -050080 </execution>
81 </executions>
82 </plugin>
83 <plugin>
84 <artifactId>maven-assembly-plugin</artifactId>
85 <version>2.6</version>
86 <executions>
87 <execution>
88 <id>zipfile</id>
89 <goals>
90 <goal>single</goal>
91 </goals>
92 <phase>package</phase>
93 <configuration>
94 <attach>true</attach>
95 <finalName>${project.artifactId}-${project.version}</finalName>
96 <descriptors>
97 <descriptor>src/assembly/assemble_zip.xml</descriptor>
98 </descriptors>
99 <appendAssemblyId>false</appendAssemblyId>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
106
107 <dependencies>
108 <dependency>
109 <groupId>org.eclipse.persistence</groupId>
110 <artifactId>javax.persistence</artifactId>
111 <version>2.1.0</version>
112 </dependency>
113 <dependency>
Guo Ruijingf8a620d2017-07-28 08:21:14 +0000114 <groupId>org.onap.policy.common</groupId>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500115 <artifactId>integrity-monitor</artifactId>
Pamela Dragosha972b6a2017-03-10 11:28:23 -0500116 <version>${project.version}</version>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500117 </dependency>
118 <dependency>
119 <groupId>org.mariadb.jdbc</groupId>
120 <artifactId>mariadb-java-client</artifactId>
121 <version>1.2.3</version>
122 </dependency>
123 <dependency>
124 <groupId>commons-cli</groupId>
125 <artifactId>commons-cli</artifactId>
126 <version>1.3</version>
127 </dependency>
128 </dependencies>
129</project>