My favorites | Sign in
Logo
                
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
~~ @version $Revision$ ($Author$) $Date$
~~ See this file format http://maven.apache.org/guides/mini/guide-apt-format.html

------------------
Maven

Building project using maven

To use BlueCove in your maven2 project you need to add this dependency to your pom.xml:

---
<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove</artifactId>
<version>2.1.0</version>
</dependency>

<!-- If you plan to run application on Linux -->
<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-gpl</artifactId>
<version>2.1.0</version>
<scope>runtime</scope>
</dependency>

<!-- If you plan to test your application in emulated Bluetooth mode -->
<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove-emu</artifactId>
<version>2.1.0</version>
<scope>test</scope>
</dependency>
---


If you are building MIDlet application change <scope> to <provided>

---
<dependency>
<groupId>net.sf.bluecove</groupId>
<artifactId>bluecove</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
---

* Releases

Releases can be found in maven Central Repository {{{http://repo1.maven.org/maven2/net/sf/bluecove/}maven.org}} and {{{http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sf/bluecove/}ibiblio.org}}.

Also the releases available from the {{{http://repository.pyx4j.com/maven2-release/net/sf/bluecove/}http://repository.pyx4j.com/maven2-release}} maven 2 repository.

* Development snapshot

The latest snapshot builds can be downloaded directly from the {{{http://repository.pyx4j.com/maven2-snapshot/net/sf/bluecove/}http://repository.pyx4j.com/maven2-snapshot}} pyx4j.com maven 2 snapshot repository.

You need to add this repository to your pom.xml or $home/.m2/settings.xml

---
<repositories>
...
<repository>
<id>pyx4j-web-snapshot</id>
<url>http://repository.pyx4j.com/maven2-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>

---
Show details Hide details

Change log

r2787 by skarzhevskyy on Feb 21, 2009   Diff
Snapshot Download all major jar and
sources
Go to: 
Project members, sign in to write a code review

Older revisions

r2677 by skarzhevskyy on Dec 25, 2008   Diff
next version 2.1.1
r2670 by skarzhevskyy on Dec 25, 2008   Diff
corrections to site
r2412 by skarzhevskyy on Oct 09, 2008   Diff
product version 2.1.0-SNAPSHOT; Moving
to AL-2.0
All revisions of this file

File info

Size: 2631 bytes, 73 lines

File properties

svn:mime-type
text/plain
svn:eol-style
native
svn:keywords
Date Author Id Revision
Hosted by Google Code