Skip to content

Commit 9d901d7

Browse files
author
peacekeeper
committed
release-0.7
1 parent f717adc commit 9d901d7

File tree

12 files changed

+26
-25
lines changed

12 files changed

+26
-25
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<a href="http://projectdanube.org/" target="_blank"><img src="http://projectdanube.github.com/xdi2/images/projectdanube_logo.png" align="right"></a>
22
<img src="http://projectdanube.github.com/xdi2/images/logo64.png"><br>
33

4-
| Current version under development: 0.7-SNAPSHOT&nbsp;&nbsp;[![Build Status](https://secure.travis-ci.org/projectdanube/xdi2.png)](http://travis-ci.org/projectdanube/xdi2) |
4+
| Current version under development: 0.8-SNAPSHOT&nbsp;&nbsp;[![Build Status](https://secure.travis-ci.org/projectdanube/xdi2.png)](http://travis-ci.org/projectdanube/xdi2) |
55
| ---- |
66

7-
| Current stable release: [0.6](https://github.com/projectdanube/xdi2/wiki/release-0.6) | Next release: [0.7](https://github.com/projectdanube/xdi2/wiki/release-0.7) | [More about releases and branches](https://github.com/projectdanube/xdi2/wiki/Releases-and-Branches) |
7+
| Current stable release: [0.7](https://github.com/projectdanube/xdi2/wiki/release-0.7) | Next release: [0.8](https://github.com/projectdanube/xdi2/wiki/release-0.8) | [More about releases and branches](https://github.com/projectdanube/xdi2/wiki/Releases-and-Branches) |
88
| ---- | ---- | ---- |
99

1010
XDI2 (“XDI Two”) is a general-purpose, lightweight and modular Java implementation of XDI specifications.
@@ -14,6 +14,7 @@ Website: https://xdi2.org/, sample deployment: https://server.xdi2.org/
1414
### Components
1515

1616
* [xdi2-core](https://github.com/projectdanube/xdi2/wiki/xdi2-core) - Implementation of the XDI graph model and basic features [.jar]
17+
* [xdi2-rdf](https://github.com/projectdanube/xdi2/wiki/xdi2-rdf) - Implementation of the XDI/RDF compatibility layer [.jar]
1718
* [xdi2-messaging](https://github.com/projectdanube/xdi2/wiki/xdi2-messaging) - Implementation of XDI messaging functionality [.jar]
1819
* [xdi2-client](https://github.com/projectdanube/xdi2/wiki/xdi2-client) - An XDI client can send messages to an XDI server, including discovery [.jar]
1920
* [xdi2-transport](https://github.com/projectdanube/xdi2/wiki/xdi2-transport) - A transport (server) can receive XDI message and process them [.jar]

client/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<dependencies>
1616
<dependency>
1717
<groupId>xdi2</groupId>
1818
<artifactId>xdi2-messaging</artifactId>
19-
<version>0.7-SNAPSHOT</version>
19+
<version>0.7</version>
2020
<scope>compile</scope>
2121
</dependency>
2222
<dependency>

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<repositories>

messaging/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<dependencies>
1616
<dependency>
1717
<groupId>xdi2</groupId>
1818
<artifactId>xdi2-core</artifactId>
19-
<version>0.7-SNAPSHOT</version>
19+
<version>0.7</version>
2020
<scope>compile</scope>
2121
</dependency>
2222
</dependencies>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>xdi2</groupId>
66
<artifactId>xdi2</artifactId>
77
<packaging>pom</packaging>
8-
<version>0.7-SNAPSHOT</version>
8+
<version>0.7</version>
99
<name>xdi2</name>
1010
<description>XDI2 (XDI Two) is a general-purpose, lightweight and modular Java implementation of XDI specifications.</description>
1111
<url>https://xdi2.org</url>

rdf/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<dependencies>
1616
<dependency>
1717
<groupId>xdi2</groupId>
1818
<artifactId>xdi2-core</artifactId>
19-
<version>0.7-SNAPSHOT</version>
19+
<version>0.7</version>
2020
<scope>compile</scope>
2121
</dependency>
2222
<dependency>

transport-http-embedded/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<build>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>xdi2</groupId>
2323
<artifactId>xdi2-transport-http</artifactId>
24-
<version>0.7-SNAPSHOT</version>
24+
<version>0.7</version>
2525
<scope>compile</scope>
2626
</dependency>
2727
<dependency>

transport-http-standalone/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<build>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>xdi2</groupId>
6060
<artifactId>xdi2-transport-http-embedded</artifactId>
61-
<version>0.7-SNAPSHOT</version>
61+
<version>0.7</version>
6262
<scope>compile</scope>
6363
</dependency>
6464
</dependencies>

transport-http-war/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<build>
@@ -139,7 +139,7 @@
139139
<dependency>
140140
<groupId>xdi2</groupId>
141141
<artifactId>xdi2-transport-http</artifactId>
142-
<version>0.7-SNAPSHOT</version>
142+
<version>0.7</version>
143143
<scope>compile</scope>
144144
</dependency>
145145

transport-http/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<dependencies>
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>xdi2</groupId>
3030
<artifactId>xdi2-transport</artifactId>
31-
<version>0.7-SNAPSHOT</version>
31+
<version>0.7</version>
3232
<scope>compile</scope>
3333
</dependency>
3434
<dependency>

transport/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<build>
@@ -21,13 +21,13 @@
2121
<dependency>
2222
<groupId>xdi2</groupId>
2323
<artifactId>xdi2-messaging</artifactId>
24-
<version>0.7-SNAPSHOT</version>
24+
<version>0.7</version>
2525
<scope>compile</scope>
2626
</dependency>
2727
<dependency>
2828
<groupId>xdi2</groupId>
2929
<artifactId>xdi2-client</artifactId>
30-
<version>0.7-SNAPSHOT</version>
30+
<version>0.7</version>
3131
<scope>compile</scope>
3232
</dependency>
3333
<dependency>

webtools/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>xdi2</groupId>
1111
<artifactId>xdi2</artifactId>
12-
<version>0.7-SNAPSHOT</version>
12+
<version>0.7</version>
1313
</parent>
1414

1515
<build>
@@ -144,19 +144,19 @@
144144
<dependency>
145145
<groupId>xdi2</groupId>
146146
<artifactId>xdi2-client</artifactId>
147-
<version>0.7-SNAPSHOT</version>
147+
<version>0.7</version>
148148
<scope>compile</scope>
149149
</dependency>
150150
<dependency>
151151
<groupId>xdi2</groupId>
152152
<artifactId>xdi2-transport-http</artifactId>
153-
<version>0.7-SNAPSHOT</version>
153+
<version>0.7</version>
154154
<scope>compile</scope>
155155
</dependency>
156156
<dependency>
157157
<groupId>xdi2</groupId>
158158
<artifactId>xdi2-rdf</artifactId>
159-
<version>0.7-SNAPSHOT</version>
159+
<version>0.7</version>
160160
<scope>compile</scope>
161161
</dependency>
162162
<dependency>

0 commit comments

Comments
 (0)