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.3</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         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-binding-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.onap.appc.plugins</groupId>
58             <artifactId>dg-loader-provider</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>org.onap.appc</groupId>
63             <artifactId>appc-config-generator-provider</artifactId>
64             <version>${project.version}</version>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.onap.appc</groupId>
69             <artifactId>appc-config-params-provider</artifactId>
70             <version>${project.version}</version>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.osgi</groupId>
75             <artifactId>org.osgi.core</artifactId>
76             <scope>provided</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.codehaus.jettison</groupId>
80             <artifactId>jettison</artifactId>
81             <version>1.3.7</version>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.apache.velocity</groupId>
86             <artifactId>velocity</artifactId>
87             <version>1.7</version>
88             <scope>test</scope>
89             <exclusions>
90                  <exclusion>
91                       <artifactId>commons-collections</artifactId>
92                       <groupId>commons-collections</groupId>
93                  </exclusion>
94             </exclusions>
95         </dependency>
96         <dependency>
97             <groupId>commons-collections</groupId>
98             <artifactId>commons-collections</artifactId>
99             <version>3.2.2</version>
100         </dependency>
101
102         <dependency>
103             <groupId>junit</groupId>
104             <artifactId>junit</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.mockito</groupId>
109             <artifactId>mockito-core</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.powermock</groupId>
114             <artifactId>powermock-api-mockito</artifactId>
115             <scope>test</scope>
116         </dependency>
117
118     </dependencies>
119
120     <build>
121         <plugins>
122             <plugin>
123                 <groupId>org.codehaus.mojo</groupId>
124                 <artifactId>exec-maven-plugin</artifactId>
125                 <version>1.5.0</version>
126                 <executions>
127                     <execution>
128                         <id>json-to-xml</id>
129                         <phase>compile</phase>
130                         <goals>
131                             <goal>java</goal>
132                         </goals>
133                     </execution>
134                 </executions>
135                 <configuration>
136                     <mainClass>org.onap.sdnc.dg.loader.DGXMLGenerator</mainClass>
137                     <arguments>
138                         <argument>${project.basedir}/src/main/resources/json</argument>
139                         <argument>${project.basedir}/src/main/resources/xml</argument>
140                     </arguments>
141                     <classpathScope>compile</classpathScope>
142                 </configuration>
143             </plugin>
144         </plugins>
145         <pluginManagement>
146             <plugins>
147                 <plugin>
148                     <groupId>org.eclipse.m2e</groupId>
149                     <artifactId>lifecycle-mapping</artifactId>
150                     <version>1.0.0</version>
151                     <configuration>
152                         <lifecycleMappingMetadata>
153                             <pluginExecutions>
154                                 <pluginExecution>
155                                     <pluginExecutionFilter>
156                                         <groupId>org.codehaus.mojo</groupId>
157                                         <artifactId>exec-maven-plugin</artifactId>
158                                         <versionRange>[1.2.1,)</versionRange>
159                                         <goals>
160                                             <goal>java</goal>
161                                             <goal>exec</goal>
162                                         </goals>
163                                     </pluginExecutionFilter>
164                                     <action>
165                                         <ignore/>
166                                     </action>
167                                 </pluginExecution>
168                             </pluginExecutions>
169                         </lifecycleMappingMetadata>
170                     </configuration>
171                 </plugin>
172             </plugins>
173         </pluginManagement>
174     </build>
175 </project>