Drop noinstantiate, noreference
diff --git a/pom.xml b/pom.xml
index 4a3c3fa..08fc42f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -187,19 +187,6 @@
               <packages>org.apache.maven.shared.dependency.graph*</packages>
             </group>
           </groups>
-          <tags>
-          <!-- from org.eclipse.aether:aether:1.1.0 -->
-            <tag>
-              <name>noinstantiate</name>
-              <placement>a</placement>
-              <head>Restriction:</head>
-            </tag>
-            <tag>
-              <name>noreference</name>
-              <placement>a</placement>
-              <head>Restriction:</head>
-            </tag>
-          </tags>
         </configuration>
       </plugin>
     </plugins>
diff --git a/src/main/java/org/apache/maven/shared/dependency/graph/internal/maven30/ConflictResolver.java b/src/main/java/org/apache/maven/shared/dependency/graph/internal/maven30/ConflictResolver.java
index 5770d63..329c028 100644
--- a/src/main/java/org/apache/maven/shared/dependency/graph/internal/maven30/ConflictResolver.java
+++ b/src/main/java/org/apache/maven/shared/dependency/graph/internal/maven30/ConflictResolver.java
@@ -743,7 +743,7 @@
      * A context used to hold information that is relevant for deriving the scope of a child dependency.
      * 
      * @see ScopeDeriver
-     * @noinstantiate This class is not intended to be instantiated by clients in production code, the constructor may
+     * This class is not intended to be instantiated by clients in production code, the constructor may
      *                change without notice and only exists to enable unit testing.
      */
     public static final class ScopeContext
@@ -760,7 +760,7 @@
          * 
          * @param parentScope The scope of the parent dependency, may be {@code null}.
          * @param childScope The scope of the child dependency, may be {@code null}.
-         * @noreference This class is not intended to be instantiated by clients in production code, the constructor may
+         * This class is not intended to be instantiated by clients in production code, the constructor may
          *              change without notice and only exists to enable unit testing.
          */
         public ScopeContext( String parentScope, String childScope )
@@ -818,7 +818,7 @@
     /**
      * A conflicting dependency.
      * 
-     * @noinstantiate This class is not intended to be instantiated by clients in production code, the constructor may
+     * This class is not intended to be instantiated by clients in production code, the constructor may
      *                change without notice and only exists to enable unit testing.
      */
     public static final class ConflictItem
@@ -878,7 +878,7 @@
          *            of {@link ConflictResolver.ConflictItem#OPTIONAL_TRUE} and
          *            {@link ConflictResolver.ConflictItem#OPTIONAL_FALSE}.
          * @param scopes The derived scopes of the conflicting dependency, must not be {@code null}.
-         * @noreference This class is not intended to be instantiated by clients in production code, the constructor may
+         * This class is not intended to be instantiated by clients in production code, the constructor may
          *              change without notice and only exists to enable unit testing.
          */
         public ConflictItem( DependencyNode parent, DependencyNode node, int depth, int optionalities,
@@ -1000,7 +1000,7 @@
      * 
      * @see VersionSelector
      * @see ScopeSelector
-     * @noinstantiate This class is not intended to be instantiated by clients in production code, the constructor may
+     * This class is not intended to be instantiated by clients in production code, the constructor may
      *                change without notice and only exists to enable unit testing.
      */
     public static final class ConflictContext
@@ -1035,7 +1035,7 @@
          *            {@code null}.
          * @param conflictIds The mapping from dependency node to conflict id, must not be {@code null}.
          * @param items The conflict items in this context, must not be {@code null}.
-         * @noreference This class is not intended to be instantiated by clients in production code, the constructor may
+         * This class is not intended to be instantiated by clients in production code, the constructor may
          *              change without notice and only exists to enable unit testing.
          */
         public ConflictContext( DependencyNode root, Object conflictId, Map<DependencyNode, Object> conflictIds,