Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -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 | 9296b76 | 2017-08-15 17:26:38 -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> |
Patrick Brady | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.appc.parent</groupId> |
| 27 | <artifactId>binding-parent</artifactId> |
| 28 | <version>1.4.0-SNAPSHOT</version> |
| 29 | <relativePath /> |
| 30 | </parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 31 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 32 | <artifactId>appc-config-flow-controller-provider</artifactId> |
| 33 | <packaging>bundle</packaging> |
| 34 | <name>Flow Executor - Provider</name> |
| 35 | <url>http://maven.apache.org</url> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>equinoxSDK381</groupId> |
| 40 | <artifactId>org.eclipse.osgi</artifactId> |
| 41 | <version>${equinox.osgi.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 44 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 45 | <artifactId>sli-provider</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>commons-io</groupId> |
| 49 | <artifactId>commons-io</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>com.fasterxml.jackson.core</groupId> |
| 53 | <artifactId>jackson-databind</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>com.fasterxml.jackson.core</groupId> |
| 57 | <artifactId>jackson-annotations</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 60 | <groupId>org.apache.commons</groupId> |
| 61 | <artifactId>commons-lang3</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 64 | <groupId>com.fasterxml.jackson.core</groupId> |
| 65 | <artifactId>jackson-core</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 69 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 70 | </dependency> |
| 71 | <dependency> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 72 | <groupId>ch.qos.logback</groupId> |
| 73 | <artifactId>logback-classic</artifactId> |
| 74 | <version>${logback.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 77 | <groupId>com.att.eelf</groupId> |
| 78 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 79 | <exclusions> |
| 80 | <exclusion> |
| 81 | <groupId>ch.qos.logback</groupId> |
| 82 | <artifactId>logback-classic</artifactId> |
| 83 | </exclusion> |
| 84 | </exclusions> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 85 | </dependency> |
| 86 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 87 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 88 | <artifactId>sql-resource-provider</artifactId> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 89 | <version>${ccsdk.sli.adaptors.version}</version> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 90 | <scope>compile</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 93 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 94 | <artifactId>sli-provider</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 97 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 98 | <artifactId>sli-common</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>com.sun.jersey</groupId> |
| 102 | <artifactId>jersey-client</artifactId> |
| 103 | <version>1.17</version> |
| 104 | <scope>provided</scope> |
| 105 | </dependency> |
| 106 | |
| 107 | <dependency> |
| 108 | <groupId>junit</groupId> |
| 109 | <artifactId>junit</artifactId> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
George, Lina (lg941u) | 55f9e7d | 2018-01-08 16:38:33 -0500 | [diff] [blame] | 112 | |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>org.json</groupId> |
| 115 | <artifactId>json</artifactId> |
| 116 | </dependency> |
George, Lina (lg941u) | 55f9e7d | 2018-01-08 16:38:33 -0500 | [diff] [blame] | 117 | <dependency> |
| 118 | <groupId>org.mockito</groupId> |
| 119 | <artifactId>mockito-core</artifactId> |
| 120 | <scope>test</scope> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.powermock</groupId> |
| 124 | <artifactId>powermock-api-mockito</artifactId> |
| 125 | <version>1.6.4</version> |
| 126 | <scope>test</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.powermock</groupId> |
| 130 | <artifactId>powermock-module-junit4</artifactId> |
| 131 | <version>1.6.4</version> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.jasypt</groupId> |
| 136 | <artifactId>jasypt</artifactId> |
| 137 | <version>1.9.2</version> |
| 138 | <scope>compile</scope> |
| 139 | </dependency> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 140 | |
| 141 | </dependencies> |
| 142 | |
| 143 | <build> |
| 144 | <plugins> |
| 145 | <plugin> |
| 146 | <groupId>org.apache.felix</groupId> |
| 147 | <artifactId>maven-bundle-plugin</artifactId> |
| 148 | <version>${bundle.plugin.version}</version> |
| 149 | <extensions>true</extensions> |
| 150 | <configuration> |
| 151 | <instructions> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 152 | <Bundle-SymbolicName>org.onap.appc.flow.controller</Bundle-SymbolicName> |
| 153 | <Bundle-Activator>org.onap.appc.flow.controller.FlowControllerActivator</Bundle-Activator> |
| 154 | <Export-Package>org.onap.appc.flow.controller</Export-Package> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 155 | <Import-Package>groovy.lang;resolution:=optional, |
| 156 | org.codehaus.groovy.*;resolution:=optional,*</Import-Package> |
Patrick Brady | 5b81764 | 2018-03-22 15:12:48 -0700 | [diff] [blame] | 157 | <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 158 | <DynamicImport-Package>*</DynamicImport-Package> |
| 159 | </instructions> |
| 160 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 161 | </configuration> |
| 162 | </plugin> |
| 163 | </plugins> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 164 | </build> |
Patrick Brady | 769d345 | 2018-09-24 13:09:27 -0700 | [diff] [blame] | 165 | <version>1.4.0-SNAPSHOT</version> |
Skip Wonnell | 9296b76 | 2017-08-15 17:26:38 -0500 | [diff] [blame] | 166 | </project> |