Skip to content

Commit

Permalink
Prepare 1.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosame committed Dec 5, 2021
1 parent 0a2a206 commit e11d3f0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,21 @@ repositories {
please use that repository **only** for the artifact groups that it supplies.

Then, in your `build.gradle` file you can list the dependencies, for example:

```groovy
dependencies {
api 'io.sf.carte:svgom-api:1.0.1'
}
```

If you use the packages provided by this project, you may need to exclude the
`xml-apis-ext` dependency in you Gradle or Maven build, for example:

```groovy
dependencies {
api "io.sf.carte:smil-api:1.0"
api "io.sf.carte:svgom-api:1.0"
api ('io.sf.carte:svgom-api:1.0.1') {
exclude group: 'xml-apis', module: 'xml-apis-ext'
}
}
```

Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/groovy/web-apis.java-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ plugins {
}

group = 'io.sf.carte'
version = '1.0'

java {
withJavadocJar()
Expand Down
2 changes: 1 addition & 1 deletion smil-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

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

version = '1.0'
version = '1.0.1'

publishing.publications.maven(MavenPublication).pom {
description = "SMIL 1.0 API Java binding"
Expand Down
2 changes: 1 addition & 1 deletion svgom-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {

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

version = '1.0'
version = '1.0.1'

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

0 comments on commit e11d3f0

Please sign in to comment.