Increment version for new branch
[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.4.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             <exclusions>
83                  <exclusion>
84                       <artifactId>commons-collections</artifactId>
85                       <groupId>commons-collections</groupId>
86                  </exclusion>
87             </exclusions>
88         </dependency>
89         <dependency>
90             <groupId>commons-collections</groupId>
91             <artifactId>commons-collections</artifactId>
92             <version>3.2.2</version>
93         </dependency>
94
95         <dependency>
96             <groupId>junit</groupId>
97             <artifactId>junit</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.mockito</groupId>
102             <artifactId>mockito-core</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.powermock</groupId>
107             <artifactId>powermock-api-mockito</artifactId>
108             <scope>test</scope>
109         </dependency>
110
111     </dependencies>
112
113     <build>
114         <plugins>
115             <plugin>
116                 <groupId>org.codehaus.mojo</groupId>
117                 <artifactId>exec-maven-plugin</artifactId>
118                 <version>1.5.0</version>
119                 <executions>
120                     <execution>
121                         <id>json-to-xml</id>
122                         <phase>compile</phase>
123                         <goals>
124                             <goal>java</goal>
125                         </goals>
126                     </execution>
127                 </executions>
128                 <configuration>
129                     <mainClass>org.onap.sdnc.dg.loader.DGXMLGenerator</mainClass>
130                     <arguments>
131                         <argument>${project.basedir}/src/main/resources/json</argument>
132                         <argument>${project.basedir}/src/main/resources/xml</argument>
133                     </arguments>
134                     <classpathScope>compile</classpathScope>
135                 </configuration>
136             </plugin>
137         </plugins>
138         <pluginManagement>
139             <plugins>
140                 <plugin>
141                     <groupId>org.eclipse.m2e</groupId>
142                     <artifactId>lifecycle-mapping</artifactId>
143                     <version>1.0.0</version>
144                     <configuration>
145                         <lifecycleMappingMetadata>
146                             <pluginExecutions>
147                                 <pluginExecution>
148                                     <pluginExecutionFilter>
149                                         <groupId>org.codehaus.mojo</groupId>
150                                         <artifactId>exec-maven-plugin</artifactId>
151                                         <versionRange>[1.2.1,)</versionRange>
152                                         <goals>
153                                             <goal>java</goal>
154                                             <goal>exec</goal>
155                                         </goals>
156                                     </pluginExecutionFilter>
157                                     <action>
158                                         <ignore/>
159                                     </action>
160                                 </pluginExecution>
161                             </pluginExecutions>
162                         </lifecycleMappingMetadata>
163                     </configuration>
164                 </plugin>
165             </plugins>
166         </pluginManagement>
167     </build>
168 </project>