Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 6 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 7 | <artifactId>appc-dgraph</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 8 | <version>1.3.0-SNAPSHOT</version> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 23 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 34 | <groupId>org.onap.appc.plugins</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 35 | <artifactId>dg-loader-provider</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | </dependency> |
| 38 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 39 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 40 | <artifactId>appc-config-generator-provider</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | <scope>test</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 45 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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 | |
Skip Wonnell | dec71ed | 2017-08-22 13:27:43 -0500 | [diff] [blame] | 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 | |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |
Skip Wonnell | 9c44fb1 | 2017-12-17 16:13:56 -0600 | [diff] [blame] | 97 | <mainClass>org.onap.sdnc.dg.loader.DGXMLGenerator</mainClass> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 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> |