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