Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <!-- |
| 2 | |
| 3 | Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. |
| 4 | |
| 5 | This program and the accompanying materials are made available under the |
| 6 | terms of the Eclipse Public License v. 2.0, which is available at |
| 7 | http://www.eclipse.org/legal/epl-2.0. |
| 8 | |
| 9 | This Source Code may also be made available under the following Secondary |
| 10 | Licenses when the conditions for such availability set forth in the |
| 11 | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 12 | version 2 with the GNU Classpath Exception, which is available at |
| 13 | https://www.gnu.org/software/classpath/license.html. |
| 14 | |
| 15 | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 16 | |
| 17 | --> |
| 18 | |
| 19 | <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/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <groupId>sahoo</groupId> |
| 22 | <artifactId>osgi-servlet</artifactId> |
| 23 | <version>1.0-SNAPSHOT</version> |
| 24 | <packaging>bundle</packaging> |
| 25 | <build> |
| 26 | <finalName>osgi-servlet</finalName> |
| 27 | <plugins> |
| 28 | <plugin> |
| 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>maven-bundle-plugin</artifactId> |
| 31 | <version>3.5.1</version> |
| 32 | <extensions>true</extensions> |
| 33 | <configuration> |
| 34 | <instructions> |
| 35 | <Export-Package></Export-Package> |
| 36 | <Private-Package>sahoo.osgihttp.test1</Private-Package> |
| 37 | <Bundle-Activator>sahoo.osgihttp.test1.Activator</Bundle-Activator> |
| 38 | </instructions> |
| 39 | </configuration> |
| 40 | </plugin> |
| 41 | </plugins> |
| 42 | </build> |
| 43 | <dependencies> |
| 44 | <dependency> |
Stuart Douglas | cb5bc8e | 2018-12-01 12:10:01 +1100 | [diff] [blame] | 45 | <groupId>jakarta.servlet</groupId> |
| 46 | <artifactId>jakarta.servlet-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 47 | <version>4.0.1</version> |
| 48 | <scope>provided</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.osgi</groupId> |
| 52 | <artifactId>osgi.core</artifactId> |
Arjan Tijms | 492a711 | 2021-02-10 00:43:04 +0100 | [diff] [blame^] | 53 | <version>6.0.0</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 54 | <scope>provided</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.osgi</groupId> |
| 58 | <artifactId>osgi.enterprise</artifactId> |
Arjan Tijms | 492a711 | 2021-02-10 00:43:04 +0100 | [diff] [blame^] | 59 | <version>6.0.0</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 60 | <scope>provided</scope> |
| 61 | </dependency> |
| 62 | </dependencies> |
| 63 | </project> |