You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2007/05/31 02:23:30 UTC

svn commit: r542991 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy

Author: jdillon
Date: Wed May 30 17:23:29 2007
New Revision: 542991

URL: http://svn.apache.org/viewvc?view=rev&rev=542991
Log:
blah

Modified:
    geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy

Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy?view=diff&rev=542991&r1=542990&r2=542991
==============================================================================
--- geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy (original)
+++ geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy Wed May 30 17:23:29 2007
@@ -63,7 +63,8 @@
         assert !exists()
         baseDir.parentFile.mkdirs()
         
-        createClient()
+        CodestationClient client = new CodestationClient(serverURL, true)
+        client.debug = true
         
         // The client works on a workingDir, and then relative target directories, so to avoid
         // needing to configure both, set the parent as the workingDir, and then use the child's
@@ -107,27 +108,6 @@
         //
         // TODO
         //
-    }
-    
-    /**
-     * Create a Codestation client.
-     */
-    private CodestationClient createClient() {
-        CodestationClient client = new CodestationClient(serverUrl, !checkCertificate)
-        client.debug = true
-        
-        /*
-        Use ~/.codestation/codestation.properties for auth configuration
-        
-        if (username) {
-            client.username = username
-        }
-        if (password) {
-            client.password = password
-        }
-        */
-        
-        return client
     }
     
     /**