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 | 9d38008 | 2018-10-09 11:32:38 -0700 | [diff] [blame] | 28 | <version>1.4.0</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 | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 63 | <dependency>
|
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 64 | <groupId>org.apache.commons</groupId>
|
| 65 | <artifactId>commons-lang3</artifactId>
|
| 66 | </dependency>
|
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 67 | <dependency>
|
| 68 | <groupId>ch.qos.logback</groupId>
|
| 69 | <artifactId>logback-classic</artifactId>
|
| 70 | <version>${logback.version}</version>
|
| 71 | </dependency>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 72 | <dependency>
|
| 73 | <groupId>com.att.eelf</groupId>
|
| 74 | <artifactId>eelf-core</artifactId>
|
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 75 | <exclusions>
|
| 76 | <exclusion>
|
| 77 | <groupId>ch.qos.logback</groupId>
|
| 78 | <artifactId>logback-classic</artifactId>
|
| 79 | </exclusion>
|
| 80 | </exclusions>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 81 | </dependency>
|
| 82 |
|
| 83 | <dependency>
|
| 84 | <groupId>junit</groupId>
|
| 85 | <artifactId>junit</artifactId>
|
| 86 | <scope>test</scope>
|
| 87 | </dependency>
|
| 88 |
|
| 89 |
|
| 90 |
|
| 91 | </dependencies>
|
| 92 | <build>
|
| 93 | <plugins>
|
| 94 | <plugin>
|
| 95 | <artifactId>maven-resources-plugin</artifactId>
|
| 96 | <version>2.6</version>
|
| 97 | <executions>
|
| 98 | <execution>
|
| 99 | <id>copy-xsl</id>
|
| 100 | <goals>
|
| 101 | <goal>copy-resources</goal>
|
| 102 | </goals>
|
| 103 | <phase>validate</phase>
|
| 104 | <configuration>
|
| 105 | <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory>
|
| 106 | <resources>
|
| 107 | <resource>
|
| 108 | <directory>src/main/resources/xsl</directory>
|
| 109 | <includes>
|
| 110 | <include>*</include>
|
| 111 | </includes>
|
| 112 | <filtering>true</filtering>
|
| 113 | </resource>
|
| 114 | </resources>
|
| 115 | </configuration>
|
| 116 | </execution>
|
| 117 | <execution>
|
| 118 | <id>copy-properties</id>
|
| 119 | <goals>
|
| 120 | <goal>copy-resources</goal>
|
| 121 | </goals>
|
| 122 | <phase>validate</phase>
|
| 123 | <configuration>
|
| 124 | <outputDirectory>${basedir}/target/properties/</outputDirectory>
|
| 125 | <resources>
|
| 126 | <resource>
|
| 127 | <directory>src/main/resources</directory>
|
| 128 | <includes>
|
| 129 | <include>*.properties</include>
|
| 130 | </includes>
|
| 131 | <filtering>true</filtering>
|
| 132 | </resource>
|
| 133 | </resources>
|
| 134 | </configuration>
|
| 135 | </execution>
|
| 136 | </executions>
|
| 137 | </plugin>
|
| 138 | <plugin>
|
| 139 | <groupId>org.apache.felix</groupId>
|
| 140 | <artifactId>maven-bundle-plugin</artifactId>
|
| 141 | <version>${bundle.plugin.version}</version>
|
| 142 | <extensions>true</extensions>
|
| 143 | <configuration>
|
| 144 | <instructions>
|
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 145 | <Bundle-SymbolicName>org.onap.appc.aai.client</Bundle-SymbolicName>
|
| 146 | <Bundle-Activator>org.onap.appc.aai.client.AppcAaiClientActivator</Bundle-Activator>
|
Modaboina, Kusumakumari (km583p) | 2133020 | 2018-09-14 17:01:04 -0400 | [diff] [blame] | 147 | <Export-Package>org.onap.appc.aai.client,org.onap.appc.aai.client.*</Export-Package>
|
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 148 | <Import-Package>groovy.lang;resolution:=optional,
|
| 149 | org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 150 | <DynamicImport-Package>*</DynamicImport-Package>
|
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 151 | <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 152 | </instructions>
|
| 153 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
|
| 154 | </configuration>
|
| 155 | </plugin>
|
| 156 | </plugins>
|
| 157 | <pluginManagement>
|
| 158 | <plugins>
|
| 159 | </plugins>
|
| 160 | </pluginManagement>
|
| 161 | </build>
|
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame^] | 162 | <version>1.5.0-SNAPSHOT</version>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 163 | </project>
|