You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/02/12 22:14:09 UTC

[maven-site] branch elharo-patch-2 created (now 66474d5)

This is an automated email from the ASF dual-hosted git repository.

elharo pushed a change to branch elharo-patch-2
in repository https://gitbox.apache.org/repos/asf/maven-site.git.


      at 66474d5  java.net is dead

This branch includes the following new commits:

     new 66474d5  java.net is dead

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-site] 01/01: java.net is dead

Posted by el...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch elharo-patch-2
in repository https://gitbox.apache.org/repos/asf/maven-site.git

commit 66474d5453b68eb0cecc5f9b2138524654d6c571
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Wed Feb 12 17:14:02 2020 -0500

    java.net is dead
    
    @hboutemy There's probably more we need to update on this page including s/Sun/Oracle/
---
 content/apt/guides/mini/guide-coping-with-sun-jars.apt | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/content/apt/guides/mini/guide-coping-with-sun-jars.apt b/content/apt/guides/mini/guide-coping-with-sun-jars.apt
index 1556cd1..f2fe85d 100644
--- a/content/apt/guides/mini/guide-coping-with-sun-jars.apt
+++ b/content/apt/guides/mini/guide-coping-with-sun-jars.apt
@@ -80,7 +80,7 @@ Coping with Sun JARs
 *----------------------------------------------------------+-------------------+----------------+
 
  If you use our suggestions as noted above when adding a Sun dependency to your
- POM, Maven 2.x can help you locate the JARs by providing
+ POM, Maven can help you locate the JARs by providing
  the site where they can be retrieved. It is important that you follow
  the suggested naming conventions as we cannot store the JARs at the central repository. We
  can only store metadata about those JARs and it is the metadata that contains
@@ -89,19 +89,3 @@ Coping with Sun JARs
  Once you have downloaded a particular Sun JAR to your system you can install the JAR
  in your local repository. Please refer to our {{{./guide-3rd-party-jars-local.html}Guide to installing 3rd party JARs}}
  for instructions on how to accomplish this.
-
- <<Note>>: Java.net provides a {{{http://download.java.net/maven/2/}Maven 2 repository}}. You could specify it directly in your POM or
- in your settings.xml between the tags \<repositories\>:
-
------
-...
-      <repositories>
-        <repository>
-          <id>maven2-repository.dev.java.net</id>
-          <name>Java.net Repository for Maven</name>
-          <url>http://download.java.net/maven/2/</url>
-          <layout>default</layout>
-        </repository>
-      </repositories>
-...
------