Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -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 | 8c4b89b | 2018-01-12 09:24:03 -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 | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 21 | --> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [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 | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 26 | <groupId>org.onap.appc.parent</groupId> |
| 27 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 28 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 29 | <relativePath /> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 30 | </parent> |
Patrick Brady | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 31 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 32 | <artifactId>appc-config-data-services-provider</artifactId> |
| 33 | <packaging>bundle</packaging> |
| 34 | <name>APPC Data Services - Provider</name> |
| 35 | <url>http://maven.apache.org</url> |
| 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> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 47 | <artifactId>sli-provider</artifactId> |
| 48 | <scope>compile</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 51 | <groupId>org.apache.commons</groupId> |
| 52 | <artifactId>commons-lang3</artifactId> |
| 53 | </dependency> |
| 54 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 55 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 56 | <artifactId>sql-resource-provider</artifactId> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 57 | <version>${ccsdk.sli.adaptors.version}</version> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 58 | <scope>compile</scope> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>commons-io</groupId> |
| 63 | <artifactId>commons-io</artifactId> |
| 64 | </dependency> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 65 | <dependency> |
| 66 | <groupId>ch.qos.logback</groupId> |
| 67 | <artifactId>logback-classic</artifactId> |
| 68 | <version>${logback.version}</version> |
| 69 | </dependency> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 70 | |
| 71 | <dependency> |
| 72 | <groupId>com.att.eelf</groupId> |
| 73 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 74 | <exclusions> |
| 75 | <exclusion> |
| 76 | <groupId>ch.qos.logback</groupId> |
| 77 | <artifactId>logback-classic</artifactId> |
| 78 | </exclusion> |
| 79 | </exclusions> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>junit</groupId> |
| 84 | <artifactId>junit</artifactId> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
Michal Kabaj | 7022896 | 2018-02-01 14:45:28 +0100 | [diff] [blame] | 88 | <groupId>org.mockito</groupId> |
| 89 | <artifactId>mockito-core</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 92 | <groupId>com.fasterxml.jackson.core</groupId> |
| 93 | <artifactId>jackson-databind</artifactId> |
| 94 | </dependency> |
| 95 | |
| 96 | </dependencies> |
| 97 | <build> |
| 98 | <plugins> |
| 99 | <plugin> |
| 100 | <artifactId>maven-resources-plugin</artifactId> |
| 101 | <executions> |
| 102 | <execution> |
| 103 | <id>copy-xsl</id> |
| 104 | <goals> |
| 105 | <goal>copy-resources</goal> |
| 106 | </goals> |
| 107 | <phase>validate</phase> |
| 108 | <configuration> |
| 109 | <outputDirectory>${basedir}/target/templates/xslt/sbg</outputDirectory> |
| 110 | <resources> |
| 111 | <resource> |
| 112 | <directory>src/main/resources/xsl</directory> |
| 113 | <includes> |
| 114 | <include>*</include> |
| 115 | </includes> |
| 116 | <filtering>true</filtering> |
| 117 | </resource> |
| 118 | </resources> |
| 119 | </configuration> |
| 120 | </execution> |
| 121 | <execution> |
| 122 | <id>copy-properties</id> |
| 123 | <goals> |
| 124 | <goal>copy-resources</goal> |
| 125 | </goals> |
| 126 | <phase>validate</phase> |
| 127 | <configuration> |
| 128 | <outputDirectory>${basedir}/target/properties/</outputDirectory> |
| 129 | <resources> |
| 130 | <resource> |
| 131 | <directory>src/main/resources</directory> |
| 132 | <includes> |
| 133 | <include>*.properties</include> |
| 134 | </includes> |
| 135 | <filtering>true</filtering> |
| 136 | </resource> |
| 137 | </resources> |
| 138 | </configuration> |
| 139 | </execution> |
| 140 | </executions> |
| 141 | </plugin> |
| 142 | <plugin> |
| 143 | <groupId>org.apache.felix</groupId> |
| 144 | <artifactId>maven-bundle-plugin</artifactId> |
| 145 | <version>${bundle.plugin.version}</version> |
| 146 | <extensions>true</extensions> |
| 147 | <configuration> |
| 148 | <instructions> |
| 149 | <Bundle-SymbolicName>appc-config-data-services</Bundle-SymbolicName> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 150 | <Bundle-Activator>org.onap.appc.data.services.AppcDataServiceActivator</Bundle-Activator> |
| 151 | <Export-Package>org.onap.appc.data.services</Export-Package> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 152 | <Import-Package>groovy.lang;resolution:=optional, |
| 153 | org.codehaus.groovy.*;resolution:=optional,*</Import-Package> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 154 | <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 155 | <DynamicImport-Package>*</DynamicImport-Package> |
| 156 | </instructions> |
| 157 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 158 | </configuration> |
| 159 | </plugin> |
| 160 | </plugins> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 161 | </build> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 162 | <version>1.5.0-SNAPSHOT</version> |
Skip Wonnell | 86011b9 | 2017-08-15 17:05:27 -0500 | [diff] [blame] | 163 | </project> |