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