Skip to content

Commit d9145fb

Browse files
committed
prepare release 2.0.11
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
1 parent 68ff706 commit d9145fb

File tree

16 files changed

+53
-29
lines changed

16 files changed

+53
-29
lines changed

integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

jcl-over-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.slf4j</groupId>
77
<artifactId>slf4j-parent</artifactId>
8-
<version>2.0.11-SNAPSHOT</version>
8+
<version>2.0.11</version>
99
<relativePath>../parent/pom.xml</relativePath>
1010
</parent>
1111

jul-to-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

log4j-over-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

osgi-over-slf4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

parent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-bom</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -27,7 +27,7 @@
2727

2828
<properties>
2929
<!-- yyyy-MM-dd'T'HH:mm:ss'Z' -->
30-
<project.build.outputTimestamp>2023-12-28T23:03:15Z</project.build.outputTimestamp>
30+
<project.build.outputTimestamp>2024-01-08T17:55:00Z</project.build.outputTimestamp>
3131
<latest.1.version>1.7.36</latest.1.version>
3232
<!-- java.util.ServiceLoader requires Java 6 -->
3333
<jdk.version>8</jdk.version>

pom.xml

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.slf4j</groupId>
88
<artifactId>slf4j-bom</artifactId>
9-
<version>2.0.11-SNAPSHOT</version>
9+
<version>2.0.11</version>
1010
<packaging>pom</packaging>
1111

1212
<url>http://www.slf4j.org</url>
@@ -152,24 +152,47 @@
152152
<artifactId>maven-javadoc-plugin</artifactId>
153153
<version>3.6.3</version>
154154
<configuration>
155-
<linkJavadoc>true</linkJavadoc>
155+
<verbose>true</verbose>
156+
<skippedModules>
157+
slf4j-jdk-platform-logging,slf4j-migrator,osgi-over-slf4j
158+
</skippedModules>
159+
<detectLinks>true</detectLinks>
160+
<doctitle>SLF4J project modules 2.1.0-alpha1</doctitle>
161+
<windowtitle>SLF4J javadoc</windowtitle>
162+
<bottom><![CDATA[Copyright &copy; 2005-{currentYear} QOS.CH Sarl. All rights reserved]]></bottom>
156163
<linksource>true</linksource>
157164
<additionalOptions>
158165
<additionalOption>-Xdoclint:none</additionalOption>
159166
</additionalOptions>
160-
<legacyMode>true</legacyMode>
161-
<sourceFileExcludes>
162-
<sourceFileExclude>**/module-info.java</sourceFileExclude>
163-
</sourceFileExcludes>
164-
<skippedModules>
165-
slf4j-jdk-platform-logging
166-
</skippedModules>
167167
<groups>
168168
<group>
169-
<title>SLF4J packages</title>
170-
<packages>org.slf4j:org.slf4j.*</packages>
169+
<title>SLF4J API packages</title>
170+
<packages>org.slf4j:org.slf4j.spi:org.slf4j.event:org.slf4j.helpers</packages>
171+
</group>
172+
173+
<group>
174+
<title>slf4j-simple package</title>
175+
<packages>org.slf4j.simple</packages>
176+
</group>
177+
178+
<group>
179+
<title>slf4j-nop package</title>
180+
<packages>org.slf4j.nop</packages>
171181
</group>
172182

183+
184+
<group>
185+
<title>slf4j-jdk14 package</title>
186+
<packages>org.slf4j.jul</packages>
187+
</group>
188+
189+
190+
<group>
191+
<title>slf4j-reload4j package</title>
192+
<packages>org.slf4j.reload4j</packages>
193+
</group>
194+
195+
173196
<group>
174197
<title>SLF4J extensions</title>
175198
<packages>
@@ -188,10 +211,11 @@
188211
</group>
189212

190213
<group>
191-
<title>Apache log4j</title>
214+
<title>log4j-over-slf4j redirection</title>
192215
<packages>org.apache.log4j:org.apache.log4j.*</packages>
193216
</group>
194217
</groups>
218+
195219
</configuration>
196220
</plugin>
197221
</plugins>

slf4j-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

slf4j-ext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

slf4j-jdk-platform-logging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>slf4j-parent</artifactId>
1010
<groupId>org.slf4j</groupId>
11-
<version>2.0.11-SNAPSHOT</version>
11+
<version>2.0.11</version>
1212
<relativePath>../parent/pom.xml</relativePath>
1313
</parent>
1414

slf4j-jdk14/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

slf4j-log4j12/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.slf4j</groupId>
1010
<artifactId>slf4j-parent</artifactId>
11-
<version>2.0.11-SNAPSHOT</version>
11+
<version>2.0.11</version>
1212
<relativePath>../parent/pom.xml</relativePath>
1313
</parent>
1414

@@ -24,7 +24,7 @@
2424
<relocation>
2525
<groupId>org.slf4j</groupId>
2626
<artifactId>slf4j-reload4j</artifactId>
27-
<version>2.0.10</version>
27+
<version>2.0.11</version>
2828
</relocation>
2929
</distributionManagement>
3030

slf4j-migrator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

slf4j-nop/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

slf4j-reload4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

slf4j-simple/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.slf4j</groupId>
99
<artifactId>slf4j-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../parent/pom.xml</relativePath>
1212
</parent>
1313

0 commit comments

Comments
 (0)