Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame^] | 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 | --> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 27 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 28 | <artifactId>appc-dgraph</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 29 | <version>1.3.0-SNAPSHOT</version> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 44 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 55 | <groupId>org.onap.appc.plugins</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 56 | <artifactId>dg-loader-provider</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 60 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 61 | <artifactId>appc-config-generator-provider</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 66 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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 | |
Skip Wonnell | dec71ed | 2017-08-22 13:27:43 -0500 | [diff] [blame] | 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 | |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Skip Wonnell | 9c44fb1 | 2017-12-17 16:13:56 -0600 | [diff] [blame] | 118 | <mainClass>org.onap.sdnc.dg.loader.DGXMLGenerator</mainClass> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 130 | only. It has no influence on the Maven build itself. --> |
| 131 | <plugin> |
| 132 | <groupId>org.eclipse.m2e</groupId> |
| 133 | <artifactId>lifecycle-mapping</artifactId> |
| 134 | <version>1.0.0</version> |
| 135 | <configuration> |
| 136 | <lifecycleMappingMetadata> |
| 137 | <pluginExecutions> |
| 138 | <pluginExecution> |
| 139 | <pluginExecutionFilter> |
| 140 | <groupId> |
| 141 | com.brocade.developer |
| 142 | </groupId> |
| 143 | <artifactId> |
| 144 | providermodule-plugin |
| 145 | </artifactId> |
| 146 | <versionRange> |
| 147 | [1.2.0.100-SNAPSHOT,) |
| 148 | </versionRange> |
| 149 | <goals> |
| 150 | <goal>process</goal> |
| 151 | </goals> |
| 152 | </pluginExecutionFilter> |
| 153 | <action> |
| 154 | <ignore /> |
| 155 | </action> |
| 156 | </pluginExecution> |
| 157 | </pluginExecutions> |
| 158 | </lifecycleMappingMetadata> |
| 159 | </configuration> |
| 160 | </plugin> |
| 161 | <plugin> |
| 162 | <groupId>org.eclipse.m2e</groupId> |
| 163 | <artifactId>lifecycle-mapping</artifactId> |
| 164 | <version>1.0.0</version> |
| 165 | <configuration> |
| 166 | <lifecycleMappingMetadata> |
| 167 | <pluginExecutions> |
| 168 | <pluginExecution> |
| 169 | <pluginExecutionFilter> |
| 170 | <groupId>org.codehaus.mojo</groupId> |
| 171 | <artifactId>exec-maven-plugin</artifactId> |
| 172 | <versionRange>[1.2.1,)</versionRange> |
| 173 | <goals> |
| 174 | <goal>java</goal> |
| 175 | <goal>exec</goal> |
| 176 | </goals> |
| 177 | </pluginExecutionFilter> |
| 178 | <action> |
| 179 | <ignore/> |
| 180 | </action> |
| 181 | </pluginExecution> |
| 182 | </pluginExecutions> |
| 183 | </lifecycleMappingMetadata> |
| 184 | </configuration> |
| 185 | </plugin> |
| 186 | </plugins> |
| 187 | </pluginManagement> |
| 188 | </build> |
| 189 | </project> |