Skip to content

Commit

Permalink
add info about version99.qos.ch going away at the end of the year
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Mar 17, 2022
1 parent 6df6053 commit 956acb0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
16 changes: 10 additions & 6 deletions slf4j-site/src/site/pages/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ <h2>Generalities</h2>
<pre class="prettyprint source">&lt;dependency&gt;
&lt;groupId&gt;org.slf4j&lt;/groupId&gt;
&lt;artifactId&gt;slf4j-api&lt;/artifactId&gt;
&lt;version&gt;${project.version}&lt;/version&gt;
&lt;version&gt;${latest.stable.version}&lt;/version&gt;
&lt;/dependency&gt;</pre>

<p>Limiting the transitivity of the SLF4J provider used in your
Expand All @@ -730,7 +730,7 @@ <h2>Generalities</h2>
<pre class="prettyprint source">&lt;dependency&gt;
&lt;groupId&gt;org.slf4j&lt;/groupId&gt;
&lt;artifactId&gt;slf4j-log4j12&lt;/artifactId&gt;
&lt;version&gt;${project.version}&lt;/version&gt;
&lt;version&gt;${latest.stable.version}&lt;/version&gt;
<b>&lt;scope&gt;test&lt;/scope&gt;</b>
&lt;/dependency&gt;</pre>

Expand Down Expand Up @@ -787,7 +787,7 @@ <h2>Generalities</h2>
&lt;dependency>
&lt;groupId>org.slf4j&lt;/groupId>
&lt;artifactId>jcl-over-slf4j&lt;/artifactId>
&lt;version>${project.version}&lt;/version>
&lt;version>${latest.stable.version}&lt;/version>
&lt;/dependency></pre>

<p>The first dependency declaration essentially states that
Expand All @@ -807,6 +807,10 @@ <h2>Generalities</h2>
</p>

<p><b>alternative 3) empty artifacts</b></p>

<p class="bold red">Version99 service will be disabled at the of
2022.</p>


<p>An alternative approach is to depend on an <b>empty</b>
<em>commons-logging.jar</em> artifact. This clever <a
Expand All @@ -817,8 +821,8 @@ <h2>Generalities</h2>

<p>The empty artifact is available from a <a
href="http://version99.qos.ch">http://version99.qos.ch</a> a
high-availability Maven repository, replicated on several hosts
located in different geographical regions.</p>
high-availability Maven repository, replicated on several
hosts.</p>

<p>The following declaration adds the version99 repository to
the set of remote repositories searched by Maven. This
Expand Down Expand Up @@ -863,7 +867,7 @@ <h2>Generalities</h2>
&lt;dependency>
&lt;groupId>org.slf4j&lt;/groupId>
&lt;artifactId>jcl-over-slf4j&lt;/artifactId>
&lt;version>${project.version}&lt;/version>
&lt;version>${latest.stable.version}&lt;/version>
&lt;/dependency>
... other dependency declarations
&lt;/dependencies>
Expand Down
2 changes: 1 addition & 1 deletion slf4j-site/src/site/pages/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h2>SLF4J user manual</h2>
to plug in the desired logging framework at <em>deployment</em>
time. Note that SLF4J-enabling your library/application implies
the addition of only a single mandatory dependency, namely
<em>slf4j-api-${project.version}.jar</em>.</p>
<em>slf4j-api-${latest.stable.version}.jar</em>.</p>

<p><span class="label">since 1.6.0</span> If no binding is found on the
class path, then SLF4J will default to a no-operation
Expand Down

0 comments on commit 956acb0

Please sign in to comment.