89 lines
3.2 KiB
XML
89 lines
3.2 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>osgi</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<name>osgi</name>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
<relativePath>..</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<modules>
|
||
|
<module>osgi-intro-sample-activator</module>
|
||
|
<module>osgi-intro-sample-service</module>
|
||
|
<module>osgi-intro-sample-client</module>
|
||
|
</modules>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>osgi-intro-client</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>osgi-intro-service</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>osgi-intro-gxyz</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>osgi-intro-mapquest</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>okhttp</artifactId>
|
||
|
<version>${okhttp.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.json</groupId>
|
||
|
<artifactId>javax.json-api</artifactId>
|
||
|
<version>${javax.json.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish</groupId>
|
||
|
<artifactId>javax.json</artifactId>
|
||
|
<version>${javax.json.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.osgi</groupId>
|
||
|
<artifactId>org.osgi.core</artifactId>
|
||
|
<version>${osgi.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.felix</groupId>
|
||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||
|
<version>${maven-bundle-plugin.version}</version>
|
||
|
<extensions>true</extensions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
</build>
|
||
|
|
||
|
<properties>
|
||
|
<okhttp.version>3.9.0</okhttp.version>
|
||
|
<javax.json.version>1.1</javax.json.version>
|
||
|
<osgi.version>6.0.0</osgi.version>
|
||
|
<maven-bundle-plugin.version>3.3.0</maven-bundle-plugin.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|