CVS: plexus-components/summit/src/java/org/apache/plexus/summit/resolver AbstractResolver.java,1.4,1.5

[email protected] Wed, 21 May 2003 11:00:28 -0500
Newsgroups gmane.comp.java.plexus.devel
Message-ID <[email protected]>
Update of /cvsroot/plexus/plexus-components/summit/src/java/org/apache/plexus/summit/resolver
In directory eng.werken.com:/tmp/cvs-serv18115/summit/src/java/org/apache/plexus/summit/resolver

Modified Files:
	AbstractResolver.java 
Log Message:
o Made AbstractResolver.getView protected again so that the resolver tool in
pull works again.

o Converted the scheduler over to using new plexus code

o switched over all the components to inherit POMs from the local repository.
This works with your current version of Maven so no changes necessary there.
But you do have to 'maven pom:install' in the top-level component directory
so that the POM is where the component projects expect it.



Index: AbstractResolver.java
===================================================================
RCS file: /cvsroot/plexus/plexus-components/summit/src/java/org/apache/plexus/summit/resolver/AbstractResolver.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- AbstractResolver.java	3 May 2003 19:14:34 -0000	1.4
+++ AbstractResolver.java	21 May 2003 16:00:26 -0000	1.5
@@ -257,7 +257,7 @@
     /**
      * Gets the view attribute of the AbstractResolver object
      */
-    View getView( String target )
+    protected View getView( String target )
         throws Exception
     {
         return getView( target, null, null );
@@ -266,7 +266,7 @@
     /**
      * Gets the view attribute of the AbstractResolver object
      */
-    View getView( String target, String targetPrefix )
+    protected View getView( String target, String targetPrefix )
         throws Exception
     {
         return getView( target, targetPrefix, null );
@@ -275,7 +275,7 @@
     /**
      * Gets the view attribute of the AbstractResolver object
      */
-    View getView( String target, String targetPrefix, String defaultView )
+    protected View getView( String target, String targetPrefix, String defaultView )
         throws Exception
     {
         List possibleViews = getPossibleViews( target, targetPrefix );