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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.appc</groupId>
26         <artifactId>appc-dgraph</artifactId>
27         <version>1.7.2</version>
28     </parent>
29     <artifactId>appc-dg-provider</artifactId>
30     <name>APPC DG - Provider</name>
31     <url>http://maven.apache.org</url>
32     <properties>
33         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34     </properties>
35     <dependencies>
36         <dependency>
37             <groupId>commons-io</groupId>
38             <artifactId>commons-io</artifactId>
39             <version>2.5</version>
40         </dependency>
41         <dependency>
42             <groupId>org.onap.ccsdk.sli.core</groupId>
43             <artifactId>sli-provider</artifactId>
44             <version>${sdnctl.sli.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>com.att.eelf</groupId>
48             <artifactId>eelf-core</artifactId>
49             <version>${eelf.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-binding-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.onap.appc.plugins</groupId>
57             <artifactId>dg-loader-provider</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>org.onap.appc</groupId>
62             <artifactId>appc-config-generator-provider</artifactId>
63             <version>${project.version}</version>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.onap.appc</groupId>
68             <artifactId>appc-config-params-provider</artifactId>
69             <version>${project.version}</version>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.osgi</groupId>
74             <artifactId>org.osgi.core</artifactId>
75             <scope>provided</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.codehaus.jettison</groupId>
79             <artifactId>jettison</artifactId>
80             <version>1.3.7</version>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.apache.velocity</groupId>
85             <artifactId>velocity</artifactId>
86             <version>1.7</version>
87             <scope>test</scope>
88             <exclusions>
89                  <exclusion>
90                       <artifactId>commons-collections</artifactId>
91                       <groupId>commons-collections</groupId>
92                  </exclusion>
93             </exclusions>
94         </dependency>
95         <dependency>
96             <groupId>commons-collections</groupId>
97             <artifactId>commons-collections</artifactId>
98             <version>3.2.2</version>
99         </dependency>
100
101         <dependency>
102             <groupId>junit</groupId>
103             <artifactId>junit</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.mockito</groupId>
108             <artifactId>mockito-core</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.powermock</groupId>
113             <artifactId>powermock-api-mockito</artifactId>
114             <scope>test</scope>
115         </dependency>
116
117     </dependencies>
118
119     <build>
120         <plugins>
121             <plugin>
122                 <groupId>org.codehaus.mojo</groupId>
123                 <artifactId>exec-maven-plugin</artifactId>
124                 <version>1.5.0</version>
125                 <executions>
126                     <execution>
127                         <id>json-to-xml</id>
128                         <phase>compile</phase>
129                         <goals>
130                             <goal>java</goal>
131                         </goals>
132                     </execution>
133                 </executions>
134                 <configuration>
135                     <mainClass>org.onap.sdnc.dg.loader.DGXMLGenerator</mainClass>
136                     <arguments>
137                         <argument>${project.basedir}/src/main/resources/json</argument>
138                         <argument>${project.basedir}/src/main/resources/xml</argument>
139                     </arguments>
140                     <classpathScope>compile</classpathScope>
141                 </configuration>
142             </plugin>
143         </plugins>
144         <pluginManagement>
145             <plugins>
146                 <plugin>
147                     <groupId>org.eclipse.m2e</groupId>
148                     <artifactId>lifecycle-mapping</artifactId>
149                     <version>1.0.0</version>
150                     <configuration>
151                         <lifecycleMappingMetadata>
152                             <pluginExecutions>
153                                 <pluginExecution>
154                                     <pluginExecutionFilter>
155                                         <groupId>org.codehaus.mojo</groupId>
156                                         <artifactId>exec-maven-plugin</artifactId>
157                                         <versionRange>[1.2.1,)</versionRange>
158                                         <goals>
159                                             <goal>java</goal>
160                                             <goal>exec</goal>
161                                         </goals>
162                                     </pluginExecutionFilter>
163                                     <action>
164                                         <ignore/>
165                                     </action>
166                                 </pluginExecution>
167                             </pluginExecutions>
168                         </lifecycleMappingMetadata>
169                     </configuration>
170                 </plugin>
171             </plugins>
172         </pluginManagement>
173     </build>
174 </project>