forked from ismb/jemma.osgi.javagal.json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
142 lines (130 loc) · 4.92 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file is part of JEMMA - http://jemma.energy-home.org (C) Copyright
2013 Telecom Italia (http://www.telecomitalia.it) JEMMA is free software:
you can redistribute it and/or modify it under the terms of the GNU Lesser
General Public License (LGPL) version 3 or later as published by the Free
Software Foundation, which accompanies this distribution and is available
at http://www.gnu.org/licenses/lgpl.html JEMMA 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 (LGPL) for more details. -->
<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>org.energy-home</groupId>
<artifactId>jemma.osgi.javagal.json</artifactId>
<packaging>bundle</packaging>
<version>1.0.3-SNAPSHOT</version>
<name>Java Gal json</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Internal dependencies version properties -->
<org.energy-home.jemma.zgd.version>1.0.0-SNAPSHOT</org.energy-home.jemma.zgd.version>
<!-- External dependencies version properties -->
<com.google.code.gson.version>2.2.4</com.google.code.gson.version>
<javax.servlet2.version>2.5.0</javax.servlet2.version>
<org.osgi.compendium.version>4.2.0</org.osgi.compendium.version>
<org.osgi.core.version>4.2.0</org.osgi.core.version>
<org.slf4j.version>1.6.2</org.slf4j.version>
<!-- Maven plugin version properties -->
<felix.bundle.plugin.version>2.5.3</felix.bundle.plugin.version>
</properties>
<build>
<resources>
<resource>
<directory>.</directory>
<includes>
<include>OSGI-INF/**</include>
</includes>
</resource>
<resource>
<directory>./src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix.bundle.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>bundle</supportedProjectType>
<supportedProjectType>war</supportedProjectType>
</supportedProjectTypes>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Vendor>Telecom Italia</Bundle-Vendor>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
<Import-Package>javax.servlet,
javax.servlet.http,
org.slf4j;version="[1.6,2)",
org.energy_home.jemma.zgd;version="[1.5.0, 1.6.0)",
org.energy_home.jemma.zgd.jaxb;version="[1.0.0, 1.1.0)",
org.osgi.service.component;version="[1.1,2)",
org.osgi.service.http;version="[1.2,2)",
com.google.gson
</Import-Package>
<Export-Package></Export-Package>
<Service-Component>OSGI-INF/*.xml</Service-Component>
<Bundle-Category>JEMMA JavaGAL, GUI</Bundle-Category>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>JemmaRepository</id>
<name>JEMMA Maven repository</name>
<url>http://ismb.github.io/jemma-maven-repository/maven</url>
</repository>
</repositories>
<dependencies>
<!-- Internal dependencies -->
<dependency>
<groupId>org.energy-home</groupId>
<artifactId>jemma.osgi.zgd.api</artifactId>
<version>${org.energy-home.jemma.zgd.version}</version>
<scope>compile</scope>
</dependency>
<!-- External dependencies -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${com.google.code.gson.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet</artifactId>
<version>${javax.servlet2.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>${org.osgi.compendium.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${org.osgi.core.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${org.slf4j.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>