My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?xml version="1.0" encoding="ISO-8859-1"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0">
<!-- @version $Revision: 2859 $ ($Author: minashokry $) $Date: 2010-07-24 17:05:21 +0200 (Sat, 24 Jul 2010) $ -->
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-parent</artifactId>
<version>2.1.1-SNAPSHOT</version><!--bluecove-version-->
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-android2</artifactId>
<name>bluecove-android2</name>
<packaging>jar</packaging>

<description>BlueCove JSR-82 implementation using android 2.x bluetooth APIs</description>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<name>Mina Shokry</name>
<id>minashokry</id>
<email>minashokry@gmail.com</email>
<roles>
<role>developer</role>
<role>developer-BlueZ-gpl</role>
<role>developer-android2</role>
</roles>
<timezone>+2</timezone>
</developer>
</developers>

<dependencies>

<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.1_r1</version>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Description>BlueCove JSR-82 implementation using android 2.x bluetooth APIs</Description>
<License>The Apache Software License, Version 2.0</License>
<Implementation-Version>${pom.version}</Implementation-Version>
<Implementation-Build>${buildLabel}</Implementation-Build>
</manifestEntries>
</archive>
</configuration>
</plugin>

<!-- can't have it in parent -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<excludeResources>true</excludeResources>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>all-sources-gz</id>
<phase>install</phase>
<goals><goal>single</goal></goals>
<configuration>
<attach>false</attach>
<tarLongFileMode>gnu</tarLongFileMode>
<descriptors>
<descriptor>assembly-distr-sources.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>

</plugins>

</build>

<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
</plugins>
</reporting>

</project>

Change log

r3057 by skarzhevskyy on Oct 18, 2010   Diff
remove stuff
Go to: 
Project members, sign in to write a code review

Older revisions

r3046 by minashokry on Jul 24, 2010   Diff
+ Initial draft of bluecove-android2
module.
+ Adding bluecove-android2 module to
main bluecove project.
+ Defining new BluetoothStackAndroid
...
All revisions of this file

File info

Size: 5477 bytes, 158 lines
Powered by Google Project Hosting