Release appc
[appc.git] / appc-directed-graph / appc-dgraph / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25     <parent>
26         <groupId>org.onap.appc</groupId>
27         <artifactId>appc-dgraph</artifactId>
28         <version>1.6.0</version>
29     </parent>
30     <artifactId>appc-dg-provider</artifactId>
31     <name>APPC DG - Provider</name>
32     <url>http://maven.apache.org</url>
33     <properties>
34         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35     </properties>
36     <dependencies>
37         <dependency>
38             <groupId>commons-io</groupId>
39             <artifactId>commons-io</artifactId>
40             <version>2.5</version>
41         </dependency>
42         <dependency>
43             <groupId>org.onap.ccsdk.sli.core</groupId>
44             <artifactId>sli-provider</artifactId>
45             <version>${sdnctl.sli.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>com.att.eelf</groupId>
49             <artifactId>eelf-core</artifactId>
50             <version>${eelf.version}</version>
51         </dependency>
52
53         <dependency>
54             <groupId>org.onap.appc.plugins</groupId>
55             <artifactId>dg-loader-provider</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.appc</groupId>
60             <artifactId>appc-config-generator-provider</artifactId>
61             <version>${project.version}</version>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.onap.appc</groupId>
66             <artifactId>appc-config-params-provider</artifactId>
67             <version>${project.version}</version>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.codehaus.jettison</groupId>
72             <artifactId>jettison</artifactId>
73             <version>1.3.7</version>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.apache.velocity</groupId>
78             <artifactId>velocity</artifactId>
79             <version>1.7</version>
80             <scope>test</scope>
81             <exclusions>
82                  <exclusion>
83                       <artifactId>commons-collections</artifactId>
84                       <groupId>commons-collections</groupId>
85                  </exclusion>
86             </exclusions>
87         </dependency>
88         <dependency>
89             <groupId>commons-collections</groupId>
90             <artifactId>commons-collections</artifactId>
91             <version>3.2.2</version>
92         </dependency>
93
94         <dependency>
95             <groupId>junit</groupId>
96             <artifactId>junit</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.mockito</groupId>
101             <artifactId>mockito-core</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.powermock</groupId>
106             <artifactId>powermock-api-mockito</artifactId>
107             <scope>test</scope>
108         </dependency>
109
110     </dependencies>
111
112     <build>
113         <plugins>
114             <plugin>
115                 <groupId>org.codehaus.mojo</groupId>
116                 <artifactId>exec-maven-plugin</artifactId>
117                 <version>1.5.0</version>
118                 <executions>
119                     <execution>
120                         <id>json-to-xml</id>
121                         <phase>compile</phase>
122                         <goals>
123                             <goal>java</goal>
124                         </goals>
125                     </execution>
126                 </executions>
127                 <configuration>
128                     <mainClass>org.onap.sdnc.dg.loader.DGXMLGenerator</mainClass>
129                     <arguments>
130                         <argument>${project.basedir}/src/main/resources/json</argument>
131                         <argument>${project.basedir}/src/main/resources/xml</argument>
132                     </arguments>
133                     <classpathScope>compile</classpathScope>
134                 </configuration>
135             </plugin>
136         </plugins>
137         <pluginManagement>
138             <plugins>
139                 <plugin>
140                     <groupId>org.eclipse.m2e</groupId>
141                     <artifactId>lifecycle-mapping</artifactId>
142                     <version>1.0.0</version>
143                     <configuration>
144                         <lifecycleMappingMetadata>
145                             <pluginExecutions>
146                                 <pluginExecution>
147                                     <pluginExecutionFilter>
148                                         <groupId>org.codehaus.mojo</groupId>
149                                         <artifactId>exec-maven-plugin</artifactId>
150                                         <versionRange>[1.2.1,)</versionRange>
151                                         <goals>
152                                             <goal>java</goal>
153                                             <goal>exec</goal>
154                                         </goals>
155                                     </pluginExecutionFilter>
156                                     <action>
157                                         <ignore/>
158                                     </action>
159                                 </pluginExecution>
160                             </pluginExecutions>
161                         </lifecycleMappingMetadata>
162                     </configuration>
163                 </plugin>
164             </plugins>
165         </pluginManagement>
166     </build>
167 </project>