Skip to content

Commit ca669b4

Browse files
committed
update README
1 parent 3a72106 commit ca669b4

5 files changed

Lines changed: 22 additions & 7 deletions

File tree

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
============
33

44
![Java CI](https://github.com/sdlang-dev/SDL/workflows/Java%20CI/badge.svg)
5-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.singingbush/sdlang/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.singingbush/sdlang)
5+
[![Maven Central](https://maven-badges.sml.io/sonatype-central/com.singingbush/sdlang/badge.svg)](https://maven-badges.sml.io/sonatype-central/com.singingbush/sdlang)
66
[![Javadocs](https://www.javadoc.io/badge/com.singingbush/sdlang.svg)](https://www.javadoc.io/doc/com.singingbush/sdlang)
77
[![Coverage Status](https://coveralls.io/repos/github/SingingBush/SDL/badge.svg?branch=master)](https://coveralls.io/github/SingingBush/SDL?branch=master)
88

@@ -18,11 +18,26 @@ Releases for v2 are available from Maven Central under the com.singingbush group
1818
<dependency>
1919
<groupId>com.singingbush</groupId>
2020
<artifactId>sdlang</artifactId>
21-
<version>2.2.0</version>
21+
<version>2.2.1</version>
2222
</dependency>
2323
```
2424

25-
The v2 repo has been transferred to the sdlang-dev github organisation so that continued development and a planned v3 can be worked on as a joint effort. For now v2 releases will continue with the same groupId and artifactId. The next major release will likely be under a new groupId.
25+
There are additional packages for *sdlang-annotations* and *sdlang-spring* which can optionally be added for additional functionality. The annotations allow pojo's to be easily annotated with fields that map to an SDL tag and the spring package allows Spring users to use an sdl file as a _PropertySource_
26+
27+
```xml
28+
<dependency>
29+
<groupId>com.singingbush</groupId>
30+
<artifactId>sdlang-annotations</artifactId>
31+
<version>2.2.1</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>com.singingbush</groupId>
35+
<artifactId>sdlang-spring</artifactId>
36+
<version>2.2.1</version>
37+
</dependency>
38+
```
39+
40+
The v2 repo has been transferred to the sdlang-dev github organisation so that continued development and a planned v3 can be worked on as a joint effort.
2641

2742
### Usage
2843

annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.singingbush</groupId>
77
<artifactId>sdlang-parent</artifactId>
8-
<version>2.2.1</version>
8+
<version>2.2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.singingbush</groupId>
88
<artifactId>sdlang-parent</artifactId>
9-
<version>2.2.1</version>
9+
<version>2.2.2-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111

1212
<name>SDLang (parent)</name>

sdlang/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.singingbush</groupId>
77
<artifactId>sdlang-parent</artifactId>
8-
<version>2.2.1</version>
8+
<version>2.2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.singingbush</groupId>
77
<artifactId>sdlang-parent</artifactId>
8-
<version>2.2.1</version>
8+
<version>2.2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)