Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [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 | ================================================================================
|
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
|
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 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=========================================================
|
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 21 | -->
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 24 | <modelVersion>4.0.0</modelVersion>
|
| 25 | <parent>
|
Patrick Brady | 46f865c | 2018-08-13 10:00:29 -0700 | [diff] [blame] | 26 | <groupId>org.onap.appc.parent</groupId>
|
| 27 | <artifactId>binding-parent</artifactId>
|
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 28 | <version>1.4.0-SNAPSHOT</version>
|
Patrick Brady | 46f865c | 2018-08-13 10:00:29 -0700 | [diff] [blame] | 29 | <relativePath />
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 30 | </parent>
|
Patrick Brady | 46f865c | 2018-08-13 10:00:29 -0700 | [diff] [blame] | 31 | <groupId>org.onap.appc</groupId>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 32 | <artifactId>appc-aai-client-provider</artifactId>
|
| 33 | <packaging>bundle</packaging>
|
| 34 | <name>APPC AAI Client - Provider</name>
|
| 35 |
|
| 36 | <properties>
|
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 38 | </properties>
|
| 39 | <dependencies>
|
| 40 | <dependency>
|
| 41 | <groupId>equinoxSDK381</groupId>
|
| 42 | <artifactId>org.eclipse.osgi</artifactId>
|
| 43 | <version>${equinox.osgi.version}</version>
|
| 44 | </dependency>
|
| 45 | <dependency>
|
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 46 | <groupId>org.onap.ccsdk.sli.core</groupId>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 47 | <artifactId>sli-provider</artifactId>
|
| 48 | <scope>compile</scope>
|
| 49 | </dependency>
|
| 50 |
|
| 51 | <dependency>
|
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 52 | <groupId>org.onap.ccsdk.sli.adaptors</groupId>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 53 | <artifactId>aai-service-provider</artifactId>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 54 | <scope>compile</scope>
|
| 55 | </dependency>
|
| 56 |
|
| 57 |
|
| 58 | <dependency>
|
| 59 | <groupId>commons-io</groupId>
|
| 60 | <artifactId>commons-io</artifactId>
|
| 61 | <version>2.5</version>
|
| 62 | </dependency>
|
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 63 | <dependency>
|
| 64 | <groupId>org.apache.commons</groupId>
|
| 65 | <artifactId>commons-lang3</artifactId>
|
| 66 | </dependency>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 67 |
|
| 68 | <dependency>
|
| 69 | <groupId>com.att.eelf</groupId>
|
| 70 | <artifactId>eelf-core</artifactId>
|
| 71 | </dependency>
|
| 72 |
|
| 73 | <dependency>
|
| 74 | <groupId>junit</groupId>
|
| 75 | <artifactId>junit</artifactId>
|
| 76 | <scope>test</scope>
|
| 77 | </dependency>
|
| 78 |
|
| 79 |
|
| 80 |
|
| 81 | </dependencies>
|
| 82 | <build>
|
| 83 | <plugins>
|
| 84 | <plugin>
|
| 85 | <artifactId>maven-resources-plugin</artifactId>
|
| 86 | <version>2.6</version>
|
| 87 | <executions>
|
| 88 | <execution>
|
| 89 | <id>copy-xsl</id>
|
| 90 | <goals>
|
| 91 | <goal>copy-resources</goal>
|
| 92 | </goals>
|
| 93 | <phase>validate</phase>
|
| 94 | <configuration>
|
| 95 | <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
|
| 96 | <resources>
|
| 97 | <resource>
|
| 98 | <directory>src/main/resources/xsl</directory>
|
| 99 | <includes>
|
| 100 | <include>*</include>
|
| 101 | </includes>
|
| 102 | <filtering>true</filtering>
|
| 103 | </resource>
|
| 104 | </resources>
|
| 105 | </configuration>
|
| 106 | </execution>
|
| 107 | <execution>
|
| 108 | <id>copy-properties</id>
|
| 109 | <goals>
|
| 110 | <goal>copy-resources</goal>
|
| 111 | </goals>
|
| 112 | <phase>validate</phase>
|
| 113 | <configuration>
|
| 114 | <outputDirectory>${basedir}/target/properties/</outputDirectory>
|
| 115 | <resources>
|
| 116 | <resource>
|
| 117 | <directory>src/main/resources</directory>
|
| 118 | <includes>
|
| 119 | <include>*.properties</include>
|
| 120 | </includes>
|
| 121 | <filtering>true</filtering>
|
| 122 | </resource>
|
| 123 | </resources>
|
| 124 | </configuration>
|
| 125 | </execution>
|
| 126 | </executions>
|
| 127 | </plugin>
|
| 128 | <plugin>
|
| 129 | <groupId>org.apache.felix</groupId>
|
| 130 | <artifactId>maven-bundle-plugin</artifactId>
|
| 131 | <version>${bundle.plugin.version}</version>
|
| 132 | <extensions>true</extensions>
|
| 133 | <configuration>
|
| 134 | <instructions>
|
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 135 | <Bundle-SymbolicName>org.onap.appc.aai.client</Bundle-SymbolicName>
|
| 136 | <Bundle-Activator>org.onap.appc.aai.client.AppcAaiClientActivator</Bundle-Activator>
|
| 137 | <Export-Package>org.onap.appc.aai.client</Export-Package>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 138 | <Import-Package>*</Import-Package>
|
| 139 | <DynamicImport-Package>*</DynamicImport-Package>
|
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 140 | <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 141 | </instructions>
|
| 142 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
|
| 143 | </configuration>
|
| 144 | </plugin>
|
| 145 | </plugins>
|
| 146 | <pluginManagement>
|
| 147 | <plugins>
|
| 148 | </plugins>
|
| 149 | </pluginManagement>
|
| 150 | </build>
|
| 151 | </project>
|