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/13 12:16:13 UTC

[maven-site] branch master updated: java.net is dead (#134)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 75b4234  java.net is dead (#134)
75b4234 is described below

commit 75b4234f198be7f4006ca16aa76842ce597f5d20
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Thu Feb 13 07:16:03 2020 -0500

    java.net is dead (#134)
    
    @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>
-...
------