-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·123 lines (100 loc) · 4.57 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
<!--
Copyright 2005-2008, OW2 Aspire RFID project
This library 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 (the "LGPL"); either version 2.1 of the
License, or (at your option) any later version. If you do not alter this
notice, a recipient may use your version of this file under either the
LGPL version 2.1, or (at his option) any later version.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
KIND, either express or implied. See the GNU Lesser General Public
License for the specific language governing rights and limitations.
Contact: OW2 Aspire RFID project <X AT Y DOT org> (with X=aspirerfid and Y=ow2)
LGPL version 2.1 full text http://www.gnu.org/licenses/lgpl-2.1.txt
-->
<project>
<properties>
<description>provides a simple reader for Tkitag starter kit.</description>
</properties>
<modelVersion>4.0.0</modelVersion>
<packaging>bundle</packaging>
<name>OW2 :: AspireRFID :: Tikitag Reader</name>
<artifactId>org.ow2.aspirerfid.reader.tikitag</artifactId>
<groupId>org.ow2.aspirerfid.reader</groupId>
<version>0.1.0-SNAPSHOT</version>
<description>${description}</description>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi_R4_core</artifactId>
<version>1.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi_R4_compendium</artifactId>
<version>1.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!--
mvn install:install-file -DgroupId=com.tikitag -DartifactId=com.tikitag.client -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=.\lib\tikitag-client-1.0-SNAPSHOT-jar-with-dependencies.jar
<scope>system</scope>
<systemPath>${basedir}/lib/tikitag-client-1.0-SNAPSHOT-jar-with-dependencies.jar</systemPath>
-->
<dependency>
<groupId>com.tikitag</groupId>
<artifactId>com.tikitag.client</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<extensions>true</extensions>
<configuration>
<instructions>
<!-- docs in http://cwiki.apache.org/FELIX/bundle-plugin-for-maven-bnd.html and http://cwiki.apache.org/FELIX/osgi-plugin-for-maven-2.html -->
<Bundle-Vendor>OW2 AspireRFID project</Bundle-Vendor>
<Bundle-Licence>LGPL v2.1</Bundle-Licence>
<Bundle-Copyright>Copyright (c) OW2 AspireRFID (2008). All Rights Reserved.</Bundle-Copyright>
<Import-Package>*</Import-Package>
<DynamicImport-Package>org.apache.commons.lang.builder, org.apache.commons.lang
</DynamicImport-Package>
<Private-Package>
${pom.artifactId}.*,
com.tikitag.client.tagservice,
com.tikitag.client.tagservice.impl,
com.tikitag.client.tagservice.impl.tagfsm,
com.tikitag.util,
com.tikitag.ons,
com.tikitag.ons.model,
com.tikitag.ons.model.util,
com.tikitag.util.config.xml
</Private-Package>
<Bundle-Activator>${pom.artifactId}.bundle.Activator</Bundle-Activator>
<_donotcopy>(CVS|.svn|config.properties)</_donotcopy>
<Main-Class>org.ow2.aspirerfid.reader.tikitag.impl.SimpleTikitagClient</Main-Class>
<Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,{src/main/resources/}</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>