-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
111 lines (95 loc) · 3.67 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0"?>
<!--
This file is part of Everit - OSGi Rich Console.
Everit - OSGi Rich Console is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Everit - OSGi Rich Console is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Everit - OSGi Rich Console. If not, see <http://www.gnu.org/licenses/>.
-->
<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>
<parent>
<groupId>org.everit.config</groupId>
<artifactId>org.everit.config.oss</artifactId>
<version>5.0.0</version>
</parent>
<groupId>org.everit.osgi.dev</groupId>
<artifactId>org.everit.osgi.dev.richconsole</artifactId>
<version>1.2.2</version>
<packaging>bundle</packaging>
<name>Everit - OSGi Rich Console</name>
<description>A simple bundle that opens up a rich client application if the OSGi server is started in a graphical environment. This module may be very helpful during development.</description>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<scm>
<connection>scm:git:git://github.com/everit-org/osgi-richconsole.git</connection>
<developerConnection>scm:git:https://github.com/everit-org/osgi-richconsole.git</developerConnection>
<url>https://github.com/everit-org/osgi-richconsole</url>
</scm>
<url>http://everit.org</url>
<ciManagement>
<system>Jenkins</system>
<url>https://ci.everit.biz/jenkins/job/osgi-richconsole</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/everit-org/osgi-richconsole/issues</url>
</issueManagement>
<licenses>
<license>
<name>GNU Lesser General Public License v3.0</name>
<url>http://opensource.org/licenses/LGPL-3.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Everit Kft.</name>
<url>http://www.everit.biz</url>
</organization>
<developers>
<developer>
<name>Everit Team</name>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.4.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
<Bundle-Activator>${project.artifactId}.internal.Activator</Bundle-Activator>
<Import-Package>*</Import-Package>
<Export-Package>${project.artifactId}</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>4.3.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>