-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
60 lines (60 loc) · 2.02 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
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>io.hyte.karaf</groupId>
<artifactId>karaf-5664</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>HYTE :: Karaf :: KARAF-5664</name>
<url>http://hyte.io</url>
<inceptionYear>2017</inceptionYear>
<organization>
<name>HYTE Technologies, Inc.</name>
<url>http://hyte.io</url>
</organization>
<modules>
<module>api</module>
<module>activator</module>
<module>annotation</module>
<module>service</module>
<module>client1</module>
<module>client2</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.5.0</version>
<inherited>true</inherited>
<extensions>true</extensions>
<configuration>
<versions>
<hyte.osgi.version>${project.version}</hyte.osgi.version>
</versions>
<instructions>
<Bundle-Activator>${activator}</Bundle-Activator>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-DocURL>${project.url}</Bundle-DocURL>
<Bundle-License>Apache License 2.0</Bundle-License>
<Export-Package>${export}</Export-Package>
<Import-Package>${import}</Import-Package>
<Implementation-Title>${project.description}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Service-Component>${service.component}</Service-Component>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>