Initial add of appc-directed-graph bundles
[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.openecomp.sdnc.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     </dependencies>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <groupId>org.codehaus.mojo</groupId>
69                 <artifactId>exec-maven-plugin</artifactId>
70                 <version>1.5.0</version>
71                 <executions>
72                     <execution>
73                         <id>json-to-xml</id>
74                         <phase>compile</phase>
75                         <goals>
76                             <goal>java</goal>
77                         </goals>
78                     </execution>
79                 </executions>
80                 <configuration>
81                     <mainClass>org.openecomp.sdnc.dg.loader.DGXMLGenerator</mainClass>
82                     <arguments>
83                         <argument>${project.basedir}/src/main/resources/json</argument>
84                         <argument>${project.basedir}/src/main/resources/xml</argument>
85                     </arguments>
86                     <classpathScope>compile</classpathScope>
87                 </configuration>
88             </plugin>
89         </plugins>
90         <pluginManagement>
91             <plugins>
92                 <!--This plugin's configuration is used to store Eclipse m2e settings
93                     only. It has no influence on the Maven build itself. -->
94                 <plugin>
95                     <groupId>org.eclipse.m2e</groupId>
96                     <artifactId>lifecycle-mapping</artifactId>
97                     <version>1.0.0</version>
98                     <configuration>
99                         <lifecycleMappingMetadata>
100                             <pluginExecutions>
101                                 <pluginExecution>
102                                     <pluginExecutionFilter>
103                                         <groupId>
104                                             com.brocade.developer
105                                         </groupId>
106                                         <artifactId>
107                                             providermodule-plugin
108                                         </artifactId>
109                                         <versionRange>
110                                             [1.2.0.100-SNAPSHOT,)
111                                         </versionRange>
112                                         <goals>
113                                             <goal>process</goal>
114                                         </goals>
115                                     </pluginExecutionFilter>
116                                     <action>
117                                         <ignore />
118                                     </action>
119                                 </pluginExecution>
120                             </pluginExecutions>
121                         </lifecycleMappingMetadata>
122                     </configuration>
123                 </plugin>
124                 <plugin>
125                     <groupId>org.eclipse.m2e</groupId>
126                     <artifactId>lifecycle-mapping</artifactId>
127                     <version>1.0.0</version>
128                     <configuration>
129                         <lifecycleMappingMetadata>
130                             <pluginExecutions>
131                                 <pluginExecution>
132                                     <pluginExecutionFilter>
133                                         <groupId>org.codehaus.mojo</groupId>
134                                         <artifactId>exec-maven-plugin</artifactId>
135                                         <versionRange>[1.2.1,)</versionRange>
136                                         <goals>
137                                             <goal>java</goal>
138                                             <goal>exec</goal>
139                                         </goals>
140                                     </pluginExecutionFilter>
141                                     <action>
142                                         <ignore/>
143                                     </action>
144                                 </pluginExecution>
145                             </pluginExecutions>
146                         </lifecycleMappingMetadata>
147                     </configuration>
148                 </plugin>
149             </plugins>
150         </pluginManagement>
151     </build>
152 </project>