Dan Timoney | 7dbb644 | 2017-07-18 20:35:53 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 6 | <artifactId>restapi-call-node</artifactId> |
Dan Timoney | 0c7f222 | 2017-08-15 10:18:56 -0400 | [diff] [blame^] | 7 | <version>0.1.0-SNAPSHOT</version> |
Dan Timoney | 7dbb644 | 2017-07-18 20:35:53 -0400 | [diff] [blame] | 8 | </parent> |
| 9 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 10 | <artifactId>restapi-call-node-provider</artifactId> |
Dan Timoney | 0c7f222 | 2017-08-15 10:18:56 -0400 | [diff] [blame^] | 11 | <version>0.1.0-SNAPSHOT</version> |
Dan Timoney | 7dbb644 | 2017-07-18 20:35:53 -0400 | [diff] [blame] | 12 | <packaging>bundle</packaging> |
| 13 | <name>RESTAPI Call Node - Provider</name> |
| 14 | <url>http://maven.apache.org</url> |
| 15 | <properties> |
| 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | </properties> |
| 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>junit</groupId> |
| 21 | <artifactId>junit</artifactId> |
| 22 | <scope>test</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.springframework</groupId> |
| 26 | <artifactId>spring-test</artifactId> |
| 27 | <version>${spring.version}</version> |
| 28 | <scope>test</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 32 | <artifactId>sli-common</artifactId> |
| 33 | <version>${sdnctl.sli.version}</version> |
| 34 | <scope>compile</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 38 | <artifactId>sli-provider</artifactId> |
| 39 | <version>${sdnctl.sli.version}</version> |
| 40 | <scope>compile</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.slf4j</groupId> |
| 44 | <artifactId>slf4j-api</artifactId> |
| 45 | <version>${slf4j.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.slf4j</groupId> |
| 49 | <artifactId>jcl-over-slf4j</artifactId> |
| 50 | <version>${slf4j.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.springframework</groupId> |
| 54 | <artifactId>spring-beans</artifactId> |
| 55 | <version>${spring.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.springframework</groupId> |
| 59 | <artifactId>spring-context</artifactId> |
| 60 | <version>${spring.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>com.sun.jersey</groupId> |
| 64 | <artifactId>jersey-client</artifactId> |
| 65 | <version>${jersey.version}</version> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.codehaus.jettison</groupId> |
| 70 | <artifactId>jettison</artifactId> |
| 71 | <version>${jettison.version}</version> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
| 74 | </dependencies> |
| 75 | |
| 76 | <build> |
| 77 | <plugins> |
| 78 | |
| 79 | |
| 80 | |
| 81 | <plugin> |
| 82 | <groupId>org.apache.felix</groupId> |
| 83 | <artifactId>maven-bundle-plugin</artifactId> |
| 84 | <extensions>true</extensions> |
| 85 | <configuration> |
| 86 | <instructions> |
| 87 | <Bundle-SymbolicName>org.onap.ccsdk.sli.restapicall</Bundle-SymbolicName> |
Stilwell, David (stilwelld) | 4515ffa | 2017-08-10 00:50:12 +0000 | [diff] [blame] | 88 | <Export-Package>org.onap.ccsdk.sli.plugins.restapicall</Export-Package> |
Dan Timoney | 7dbb644 | 2017-07-18 20:35:53 -0400 | [diff] [blame] | 89 | <Import-Package>*</Import-Package> |
| 90 | </instructions> |
| 91 | |
| 92 | |
| 93 | </configuration> |
| 94 | |
| 95 | </plugin> |
| 96 | |
| 97 | |
| 98 | </plugins> |
| 99 | |
| 100 | </build> |
| 101 | </project> |