This is an automated email from the ASF dual-hosted git repository. mattsicker pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git
commit 6b9d4fc0e8c29a144739f42fd1ec1776e57b201b Author: Matt Sicker <[email protected]> AuthorDate: Sun Jan 29 19:13:45 2023 -0600 Clean up artifacts --- pom.xml | 9 --------- src/site/asciidoc/artifacts.adoc | 9 ++++----- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index dd54e0c..62d1c61 100644 --- a/pom.xml +++ b/pom.xml @@ -425,15 +425,6 @@ <moduleExcludes> <xdoc>navigation.xml</xdoc> </moduleExcludes> - <asciidoc> - <attributes> - <!-- copy any site properties wanted in asciidoc files --> - <Log4jKotlinVersion>${Log4jKotlinVersion}</Log4jKotlinVersion> - <Log4jReleaseVersion>${Log4jKotlinVersion}</Log4jReleaseVersion> - <Log4jReleaseManager>${Log4jReleaseManager}</Log4jReleaseManager> - <Log4jReleaseKey>${Log4jReleaseKey}</Log4jReleaseKey> - </attributes> - </asciidoc> </configuration> <dependencies> <dependency> diff --git a/src/site/asciidoc/artifacts.adoc b/src/site/asciidoc/artifacts.adoc index aa65fd9..081bc4a 100644 --- a/src/site/asciidoc/artifacts.adoc +++ b/src/site/asciidoc/artifacts.adoc @@ -31,11 +31,10 @@ To build with https://maven.apache.org/[Apache Maven], add the dependencies list <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api-kotlin</artifactId> - <version>1.3.0-SNAPSHOT</version> + <version>1.3.0</version> </dependency> </dependencies> ---- -<1> == Using Log4j Kotlin in your Apache Ivy build @@ -46,7 +45,7 @@ To build with https://ant.apache.org/ivy/[Apache Ivy], add the dependencies list [source,xml] ---- <dependencies> - <dependency org="org.apache.logging.log4j" name="log4j-api-kotlin" rev="1.3.0-SNAPSHOT" /> + <dependency org="org.apache.logging.log4j" name="log4j-api-kotlin" rev="1.3.0" /> </dependencies> ---- @@ -58,7 +57,7 @@ To build with https://gradle.org/[Gradle], add the dependencies listed below to [source] ---- dependencies { - compile group: 'org.apache.logging.log4j', name: 'log4j-api-kotlin', version: '1.3.0-SNAPSHOT' + compile group: 'org.apache.logging.log4j', name: 'log4j-api-kotlin', version: '1.3.0' } ---- @@ -99,4 +98,4 @@ repositories { mavenCentral() maven { url 'https://repository.apache.org/snapshots' } } ----- \ No newline at end of file +----
