-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
60 lines (60 loc) · 2.09 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.redhat.brq.integration</groupId>
<artifactId>osgi-seminar</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Integration :: OSGi</name>
<modules>
<module>lab1-hello</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- BOM for JBoss Fuse -->
<dependency>
<groupId>org.jboss.fuse.bom</groupId>
<artifactId>jboss-fuse-parent</artifactId>
<version>6.2.0.redhat-133</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.4</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>fusesource</id>
<url>https://repo.fusesource.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>fusesource</id>
<url>https://repo.fusesource.com/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
</project>