From e11d3f054c130167ad0bcd0d72dbbb3f02cc1939 Mon Sep 17 00:00:00 2001 From: Carlos Amengual Date: Sun, 5 Dec 2021 17:08:21 +0100 Subject: [PATCH] Prepare 1.0.1 release. --- README.md | 15 +++++++++++++-- .../main/groovy/web-apis.java-conventions.gradle | 1 - smil-api/build.gradle | 2 +- svgom-api/build.gradle | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5fa8759..e7f1c39 100644 --- a/README.md +++ b/README.md @@ -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' + } } ``` diff --git a/buildSrc/src/main/groovy/web-apis.java-conventions.gradle b/buildSrc/src/main/groovy/web-apis.java-conventions.gradle index 2f6ae4e..d202ba9 100644 --- a/buildSrc/src/main/groovy/web-apis.java-conventions.gradle +++ b/buildSrc/src/main/groovy/web-apis.java-conventions.gradle @@ -4,7 +4,6 @@ plugins { } group = 'io.sf.carte' -version = '1.0' java { withJavadocJar() diff --git a/smil-api/build.gradle b/smil-api/build.gradle index 51ae542..6e486bc 100644 --- a/smil-api/build.gradle +++ b/smil-api/build.gradle @@ -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" diff --git a/svgom-api/build.gradle b/svgom-api/build.gradle index 2fcfdc4..0473001 100644 --- a/svgom-api/build.gradle +++ b/svgom-api/build.gradle @@ -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"