Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
mojahidi | 3df3182 | 2017-08-29 18:20:26 +0530 | [diff] [blame^] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | ================================================================================ |
| 8 | Copyright (C) 2017 Amdocs |
| 9 | ============================================================================= |
| 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | |
| 22 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 23 | ============LICENSE_END========================================================= |
| 24 | --> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 26 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <parent> |
| 29 | <artifactId>appc-artifact-handler</artifactId> |
| 30 | <groupId>org.openecomp.appc</groupId> |
| 31 | <version>1.1.0-SNAPSHOT</version> |
| 32 | </parent> |
| 33 | <artifactId>appc-artifact-handler-provider</artifactId> |
| 34 | <packaging>bundle</packaging> |
| 35 | |
| 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>maven-bundle-plugin</artifactId> |
| 41 | <extensions>true</extensions> |
| 42 | <configuration> |
| 43 | <instructions> |
| 44 | <Bundle-SymbolicName>org.openecomp.appc.artifact.handler</Bundle-SymbolicName> |
mojahidi | 3df3182 | 2017-08-29 18:20:26 +0530 | [diff] [blame^] | 45 | <Bundle-Activator>org.openecomp.appc.artifact.handler.SdcArtifactHandlerActivator</Bundle-Activator> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 46 | <Export-Package>org.openecomp.appc.artifact.handler,org.opendaylight.controller.config.yang.config.artifact-handler_provider.impl</Export-Package> |
| 47 | <Import-Package>*</Import-Package> |
| 48 | <DynamicImport-Package>*</DynamicImport-Package> |
| 49 | </instructions> |
| 50 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.opendaylight.yangtools</groupId> |
| 55 | <artifactId>yang-maven-plugin</artifactId> |
| 56 | <executions> |
| 57 | <execution> |
| 58 | <id>config</id> |
| 59 | <goals> |
| 60 | <goal>generate-sources</goal> |
| 61 | </goals> |
| 62 | <configuration> |
| 63 | <codeGenerators> |
| 64 | <generator> |
| 65 | <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass> |
| 66 | <outputBaseDir>${jmxGeneratorPath}</outputBaseDir> |
| 67 | <additionalConfiguration> |
| 68 | <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1> |
| 69 | </additionalConfiguration> |
| 70 | </generator> |
| 71 | <generator> |
| 72 | <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass> |
| 73 | <outputBaseDir>${salGeneratorPath}</outputBaseDir> |
| 74 | </generator> |
| 75 | </codeGenerators> |
| 76 | <inspectDependencies>true</inspectDependencies> |
| 77 | </configuration> |
| 78 | </execution> |
| 79 | </executions> |
| 80 | <dependencies> |
| 81 | <dependency> |
| 82 | <groupId>org.opendaylight.mdsal</groupId> |
| 83 | <artifactId>maven-sal-api-gen-plugin</artifactId> |
| 84 | <version>${odl.sal.api.gen.plugin.version}</version> |
| 85 | <type>jar</type> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.opendaylight.controller</groupId> |
| 89 | <artifactId>yang-jmx-generator-plugin</artifactId> |
| 90 | <version>${odl.yang.jmx.generator.version}</version> |
| 91 | </dependency> |
| 92 | </dependencies> |
| 93 | </plugin> |
| 94 | <plugin> |
| 95 | <groupId>org.codehaus.mojo</groupId> |
| 96 | <artifactId>build-helper-maven-plugin</artifactId> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <id>attach-artifacts</id> |
| 100 | <goals> |
| 101 | <goal>attach-artifact</goal> |
| 102 | </goals> |
| 103 | <phase>package</phase> |
| 104 | <configuration> |
| 105 | <artifacts> |
| 106 | <artifact> |
| 107 | <file>${project.build.directory}/classes/initial/artifact-handler-provider.xml</file> |
| 108 | <type>xml</type> |
| 109 | <classifier>config</classifier> |
| 110 | </artifact> |
| 111 | </artifacts> |
| 112 | </configuration> |
| 113 | </execution> |
| 114 | </executions> |
| 115 | </plugin> |
| 116 | </plugins> |
| 117 | </build> |
| 118 | |
| 119 | <dependencies> |
| 120 | <dependency> |
| 121 | <groupId>org.openecomp.appc</groupId> |
| 122 | <artifactId>appc-artifact-handler-model</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.opendaylight.controller</groupId> |
| 126 | <artifactId>config-api</artifactId> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.openecomp.appc</groupId> |
| 130 | <artifactId>appc-yang-generator</artifactId> |
| 131 | <version>${project.version}</version> |
| 132 | </dependency> |
| 133 | |
| 134 | <dependency> |
| 135 | <groupId>org.opendaylight.controller</groupId> |
| 136 | <artifactId>sal-binding-config</artifactId> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>org.opendaylight.controller</groupId> |
| 140 | <artifactId>sal-binding-api</artifactId> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>org.opendaylight.controller</groupId> |
| 144 | <artifactId>sal-common-util</artifactId> |
| 145 | </dependency> |
| 146 | |
| 147 | <dependency> |
| 148 | <groupId>org.openecomp.sdnc.core</groupId> |
| 149 | <artifactId>sli-common</artifactId> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.openecomp.sdnc.core</groupId> |
| 153 | <artifactId>sli-provider</artifactId> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.openecomp.appc</groupId> |
| 157 | <artifactId>appc-config-params-provider</artifactId> |
| 158 | <version>${project.version}</version> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <artifactId>sal-test-model</artifactId> |
| 162 | <groupId>org.opendaylight.controller</groupId> |
| 163 | <scope>test</scope> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <artifactId>sal-rest-connector</artifactId> |
| 167 | <groupId>org.opendaylight.netconf</groupId> |
| 168 | <scope>test</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.opendaylight.controller</groupId> |
| 172 | <artifactId>sal-binding-broker-impl</artifactId> |
| 173 | <scope>test</scope> |
| 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>org.opendaylight.controller</groupId> |
| 177 | <artifactId>sal-binding-broker-impl</artifactId> |
| 178 | <version>${odl.mdsal.version}</version> |
| 179 | <classifier>tests</classifier> |
| 180 | <type>test-jar</type> |
| 181 | <scope>test</scope> |
| 182 | </dependency> |
| 183 | <dependency> |
| 184 | <groupId>com.att.eelf</groupId> |
| 185 | <artifactId>eelf-core</artifactId> |
| 186 | </dependency> |
| 187 | <dependency> |
| 188 | <groupId>junit</groupId> |
| 189 | <artifactId>junit</artifactId> |
| 190 | <scope>test</scope> |
| 191 | </dependency> |
| 192 | <dependency> |
| 193 | <groupId>org.apache.commons</groupId> |
| 194 | <artifactId>commons-lang3</artifactId> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.json</groupId> |
| 198 | <artifactId>json</artifactId> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>org.openecomp.sdnc.adaptors</groupId> |
| 202 | <artifactId>sql-resource-provider</artifactId> |
| 203 | <version>${openecomp.sdnc.sql-resource.version}</version> |
| 204 | <scope>compile</scope> |
| 205 | </dependency> |
| 206 | </dependencies> |
| 207 | </project> |