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