Skip to content

Commit e11d3f0

Browse files
committed
Prepare 1.0.1 release.
1 parent 0a2a206 commit e11d3f0

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,21 @@ repositories {
9494
please use that repository **only** for the artifact groups that it supplies.
9595

9696
Then, in your `build.gradle` file you can list the dependencies, for example:
97+
98+
```groovy
99+
dependencies {
100+
api 'io.sf.carte:svgom-api:1.0.1'
101+
}
102+
```
103+
104+
If you use the packages provided by this project, you may need to exclude the
105+
`xml-apis-ext` dependency in you Gradle or Maven build, for example:
106+
97107
```groovy
98108
dependencies {
99-
api "io.sf.carte:smil-api:1.0"
100-
api "io.sf.carte:svgom-api:1.0"
109+
api ('io.sf.carte:svgom-api:1.0.1') {
110+
exclude group: 'xml-apis', module: 'xml-apis-ext'
111+
}
101112
}
102113
```
103114

buildSrc/src/main/groovy/web-apis.java-conventions.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ plugins {
44
}
55

66
group = 'io.sf.carte'
7-
version = '1.0'
87

98
java {
109
withJavadocJar()

smil-api/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
description = 'io.sf.carte:smil-api'
66

7-
version = '1.0'
7+
version = '1.0.1'
88

99
publishing.publications.maven(MavenPublication).pom {
1010
description = "SMIL 1.0 API Java binding"

svgom-api/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88

99
description = 'io.sf.carte:svgom-api'
1010

11-
version = '1.0'
11+
version = '1.0.1'
1212

1313
publishing.publications.maven(MavenPublication).pom {
1414
description = "SVGOM 1.0 API Java binding"

0 commit comments

Comments
 (0)