Change to CCSDK and ODL Carbon
[appc.git] / appc-directed-graph / appc-dgraph / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.openecomp.appc</groupId>
7         <artifactId>appc-dgraph</artifactId>
8         <version>1.1.0-SNAPSHOT</version>
9     </parent>
10     <artifactId>appc-dg-provider</artifactId>
11     <name>APPC DG - Provider</name>
12     <url>http://maven.apache.org</url>
13     <properties>
14         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15     </properties>
16     <dependencies>
17         <dependency>
18             <groupId>commons-io</groupId>
19             <artifactId>commons-io</artifactId>
20             <version>2.5</version>
21         </dependency>
22         <dependency>
23             <groupId>org.onap.ccsdk.sli.core</groupId>
24             <artifactId>sli-provider</artifactId>
25             <version>${sdnctl.sli.version}</version>
26         </dependency>
27         <dependency>
28             <groupId>com.att.eelf</groupId>
29             <artifactId>eelf-core</artifactId>
30             <version>${eelf.version}</version>
31         </dependency>
32
33         <dependency>
34             <groupId>org.openecomp.appc.plugins</groupId>
35             <artifactId>dg-loader-provider</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.openecomp.appc</groupId>
40             <artifactId>appc-config-generator-provider</artifactId>
41             <version>${project.version}</version>
42             <scope>test</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.openecomp.appc</groupId>
46             <artifactId>appc-config-params-provider</artifactId>
47             <version>${project.version}</version>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.codehaus.jettison</groupId>
52             <artifactId>jettison</artifactId>
53             <version>1.3.7</version>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.apache.velocity</groupId>
58             <artifactId>velocity</artifactId>
59             <version>1.7</version>
60             <scope>test</scope>
61         </dependency>
62
63         <dependency>
64             <groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.mockito</groupId>
70             <artifactId>mockito-core</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.powermock</groupId>
75             <artifactId>powermock-api-mockito</artifactId>
76             <scope>test</scope>
77         </dependency>
78
79     </dependencies>
80
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.codehaus.mojo</groupId>
85                 <artifactId>exec-maven-plugin</artifactId>
86                 <version>1.5.0</version>
87                 <executions>
88                     <execution>
89                         <id>json-to-xml</id>
90                         <phase>compile</phase>
91                         <goals>
92                             <goal>java</goal>
93                         </goals>
94                     </execution>
95                 </executions>
96                 <configuration>
97                     <mainClass>org.openecomp.sdnc.dg.loader.DGXMLGenerator</mainClass>
98                     <arguments>
99                         <argument>${project.basedir}/src/main/resources/json</argument>
100                         <argument>${project.basedir}/src/main/resources/xml</argument>
101                     </arguments>
102                     <classpathScope>compile</classpathScope>
103                 </configuration>
104             </plugin>
105         </plugins>
106         <pluginManagement>
107             <plugins>
108                 <!--This plugin's configuration is used to store Eclipse m2e settings
109                     only. It has no influence on the Maven build itself. -->
110                 <plugin>
111                     <groupId>org.eclipse.m2e</groupId>
112                     <artifactId>lifecycle-mapping</artifactId>
113                     <version>1.0.0</version>
114                     <configuration>
115                         <lifecycleMappingMetadata>
116                             <pluginExecutions>
117                                 <pluginExecution>
118                                     <pluginExecutionFilter>
119                                         <groupId>
120                                             com.brocade.developer
121                                         </groupId>
122                                         <artifactId>
123                                             providermodule-plugin
124                                         </artifactId>
125                                         <versionRange>
126                                             [1.2.0.100-SNAPSHOT,)
127                                         </versionRange>
128                                         <goals>
129                                             <goal>process</goal>
130                                         </goals>
131                                     </pluginExecutionFilter>
132                                     <action>
133                                         <ignore />
134                                     </action>
135                                 </pluginExecution>
136                             </pluginExecutions>
137                         </lifecycleMappingMetadata>
138                     </configuration>
139                 </plugin>
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>