Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    #61
    No plugin found for prefix 'smartgwt'

    I have been successfully using this plugin for probably over a month. Not when I try to use it I get the error No plugin found for prefix 'smartgwt'.

    Here is the output from Maven:

    Code:
    INFO] Scanning for projects...
    Downloading: http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
    Downloading: http://repo.maven.apache.org/maven2/com/googlecode/smartgwt-maven-plugin/maven-metadata.xml
    Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
    Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (11 KB at 39.9 KB/sec)
    Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (22 KB at 76.1 KB/sec)
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 0.966s
    [INFO] Finished at: Fri May 03 18:29:39 PDT 2013
    [INFO] Final Memory: 10M/378M
    [INFO] ------------------------------------------------------------------------
    [ERROR] No plugin found for prefix 'smartgwt' in the current project and in the plugin groups [com.googlecode.smartgwt-maven-plugin, org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (C:\Users\Bruce\.m2\repository), central (http://repo.maven.apache.org/maven2)] -> [Help 1]
    Is there any reason why this would have stopped working recently?

    Of course its possible that I could have changed something on my end but so far I haven't been able to find any changes that would cause this.

    I'm running

    Code:
    mvn smartgwt:install –Pisc
    I've tried running this both from the command line and from Eclipse and I get the same results.

    Additional note: another engineer on my team is experiencing the same problem and he didn't change anything because he was on a trip for the past several days.
    Last edited by dbscott525; 3 May 2013, 18:02. Reason: additional info

    Comment


      #62
      Originally posted by henrywu21 View Post
      I'm newbie of maven, all tries passed but only when I try to deploy to corporate repo like below by 'smartgwt:deploy -Pisc -Dbuild.date=2013-05-01', always get "Return code is: 401, ReasonPhrase: Unauthorized." error, must be username/password setting for the corporate_host, any idea of how to set it? Thanks!

      Code:
      <repository.id>corporate-nexus</repository.id>        <repository.url>http://corporate_host:9081/nexus/content/repositories/thirdparty/</repository.url>
      As you said, this is a Maven / repo config issue that has nothing to do with the plugin. You of course need a profile on your repo with deploy authority, and then you just need to add the creds to your Maven settings:

      Code:
      <settings>
      
        <servers>
          <server>
                  <id>corporate-nexus</id>
      	    <username>NEXUS_USERNAME</username>
      	    <password>NEXUS_PASSWORD</password>
          </server>
        </servers>
        
        <snip/>
      
      </settings>

      Comment


        #63
        Originally posted by dbscott525 View Post
        Is there any reason why this would have stopped working recently?
        No. You also have a problem with your Maven settings. You haven't posted them so I don't know where your problem is, but it looks like Maven doesn't know anything about the pluginRepositories (see post #1).

        Comment


          #64
          Originally posted by bbruyn View Post
          No. You also have a problem with your Maven settings. You haven't posted them so I don't know where your problem is, but it looks like Maven doesn't know anything about the pluginRepositories (see post #1).
          Here is the settings.xml file I’m using. I think it is pretty much the same settings file described in this discussion thread with the exception of userid and password.

          Code:
          <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          	xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
          	http://maven.apache.org/xsd/settings-1.0.0.xsd">
          
          	<profiles>
          		<profile>
          			<id>isc</id>
          			<properties>
          				<isc.username>dbscott525</isc.username>
          				<isc.password>REDACTED</isc.password>
          				<license>EVAL</license>
          				<!-- <license>LGPL</license> <license>EVAL</license> <license>PRO</license> <license>POWER</license>
          					<license>ENTERPRISE</license>
          					-->
          				<!-- if optional analytics has been licensed with power/enterprise -->
          				<analytics>false</analytics>
          				<!-- if optional messaging has been licensed with power/enterprise -->
          				<messaging>false</messaging>
          
          				<!-- to deploy the smartgwt artifacts to some corporate repo via deploy goal -->
          				<!-- repository.id>corporate-nexus</repository.id -->
          				<!-- repository.url>http://localhost:9081/nexus/content/repositories/thirdparty/</repository.url
          					-->
          			</properties>
          
          			<!-- temporary configuration providing access to staging repo -->
          			<pluginRepositories>
          				<pluginRepository>
          					<id>sonatype-staging</id>
          					<name>Sonatype Staged Releases</name>
          					<releases>
          						<enabled>true</enabled>
          					</releases>
          					<snapshots>
          						<enabled>false</enabled>
          					</snapshots>
          					<url>
          						https://oss.sonatype.org/content/repositories/comgooglecodesmartgwt-maven-plugin-608/
          					</url>
          					<layout>default</layout>
          				</pluginRepository>
          				<pluginRepository>
          					<id>sonatype-snapshots</id>
          					<name>Sonatype Release Snapshots</name>
          					<releases>
          						<enabled>false</enabled>
          					</releases>
          					<snapshots>
          						<enabled>true</enabled>
          					</snapshots>
          					<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
          					<layout>default</layout>
          				</pluginRepository>
          			</pluginRepositories>
          		</profile>
          
          	</profiles>
          
          
          	<pluginGroups>
          		<pluginGroup>
          				com.googlecode.smartgwt-maven-plugin
          		</pluginGroup>
          	</pluginGroups>
          
          
          </settings>
          I think I have discovered two problems and their remedies through trial and error:

          Problem #1: Maven sometimes gets confused and does not locate, read, process the settings.xml file correctly. This happens no matter where I locate the settings.xml file.

          I'm using the command:
          Code:
          mvn smartgwt:install -Pisc
          I sporadically get these results:
          Code:
          [INFO] Scanning for projects...
          [INFO] ------------------------------------------------------------------------
          [INFO] BUILD FAILURE
          [INFO] ------------------------------------------------------------------------
          [INFO] Total time: 0.093s
          [INFO] Finished at: Tue May 07 19:42:39 PDT 2013
          [INFO] Final Memory: 10M/300M
          [INFO] ------------------------------------------------------------------------
          [ERROR] The goal you specified requires a project to execute but there is no POM in this directory (P:\EclipseWorkSpaces\CedarCone). Please verify you invoked Maven from the correct directory. -> [Help 1]
          [ERROR] 
          [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
          [ERROR] Re-run Maven using the -X switch to enable full debug logging.
          [ERROR] 
          [ERROR] For more information about the errors and possible solutions, please read the following articles:
          [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException
          If I change the order of the command line parameters to:
          Code:
          mvn -Pisc smartgwt:install
          It works. I know it doesn't make sense and seems crazy.

          Problem #2: If problem #1 doesn't show up sometimes the plugin can't find the build for the day. This seems to happen a little after midnight and on weekends. My theory is that the new build hasn't been built yet so the plugin is looking for a non-existent build for the current date.

          The remedy is to specify a known build as you indicated in one of your plugin usage examples:
          Code:
          mvn smartgwt:install -Pisc -Dbuild.date=2013-05-07
          This works when the plugin can't find the current build.

          This is a question for the Isomorphic team. Does Isomorphic have plans to officially support this plugin?

          Comment


            #65
            You're using a non-existent staging repository. So yeah, there was a change 6 or 7 weeks ago that's crossing you up. See the update from March 21 (and the corresponding updated to post #1).

            Comment


              #66
              Cannot find smartgwt-maven-plugin at Releases server

              Hello.

              I cannot find smartgwt-maven-plugin at Releases server although
              it was there two days ago.

              URL I am using:
              https://oss.sonatype.org/content/rep...en-plugin-011/

              oss.sonatype.org does not know about the plugin except for Snapshots:

              https://oss.sonatype.org/index.html#...t-maven-plugin

              What has happened with the releases? Should I use only snapshots from now on?

              Thanks
              Last edited by panizo; 13 Jun 2013, 01:00. Reason: typos

              Comment


                #67
                Oops, sorry about that. Sonatype has a job that runs to clean up stale staging repositories. I haven't touched it since March, so it got blasted.

                I guess then that the time has pretty much come to go ahead and release it to Central. I'll see about taking care of that in the near-term, but you can find it in the meantime on the new staging repo at https://oss.sonatype.org/content/rep...n-plugin-1004/

                Comment


                  #68
                  Thanks a lot bbruyn!

                  Yes, Central would be nice.

                  Thanks again.

                  Comment


                    #69
                    Update: Sonatype has blasted the repo again, so I've staged it one last time at https://oss.sonatype.org/content/rep...en-plugin-1005.

                    If there are no problems with it, I'll be pushing to Central tonight.

                    Comment


                      #70
                      As of some time last night, the plugin is available via Maven Central. As the staging repo is no longer needed, I'l be dropping it tonight. Just remove the 'sonatype-staging' repository from your profile's pluginRepositories and Maven should resolve it as any other plugin.

                      I'll update the instructions in post #1 accordingly, and get around to formal documentation at some point, unless someone would like to handle that for me. :-)

                      Enjoy.

                      Comment


                        #71
                        I just tried to install the nightly build from 4.0p

                        mvn com.googlecode.smartgwt-maven-plugin:smartgwt-maven-plugin:4.0:install -Pisc -Dbuild.date=2013-07-14

                        ==> Could not find artifact com.googlecode.smartgwt-maven-plugin:smartgwt-maven-plugin:pom:4.0 in sonatype-snapshots

                        and I tried :
                        mvn com.googlecode.smartgwt-maven-plugin:smartgwt-maven-plugin:4.0-SNAPSHOT:install -Pisc -Dbuild.date=2013-07-14

                        => File not found at 'http://www.smartclient.com/builds/SmartGWT/4.0d/LGPL/2013-07-14/smartgwt-4.0d.zip'.Expected response with ContentType application/zip

                        But how to switch between Patch Builds and Development Builds ??

                        Thanks

                        my settings.xml :
                        Code:
                        <pluginRepository>
                                    <id>sonatype-snapshots</id>
                                    <name>Sonatype Release Snapshots</name>
                                    <releases>
                                        <enabled>true</enabled>
                        		<updatePolicy>always</updatePolicy>
                                    </releases>	
                                    <snapshots>
                                        <enabled>false</enabled>
                        		<updatePolicy>always</updatePolicy>
                                    </snapshots>
                                    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
                                    <layout>default</layout>
                                </pluginRepository>

                        Comment


                          #72
                          Right, the 4.0 version of the plugin had not yet been released. You'll find it now in a new staging repository at https://oss.sonatype.org/content/rep...n-plugin-1006/.

                          I've not tested the 4.0 builds in several months, so I'll leave it in staging for a while to make sure there have been no changes that I'm unaware of. Do let me know how you get on with it.
                          Last edited by bbruyn; 15 Jul 2013, 08:02.

                          Comment


                            #73
                            Hi Bbruyn!

                            the plugin repository worked 100 % for me

                            com.googlecode.smartgwt-maven-plugin:smartgwt-maven-plugin:4.0:install -Pisc -Dbuild.date=2013-07-14
                            Worked!

                            Thanks :)

                            Originally posted by bbruyn View Post
                            Right, the 4.0 version of the plugin had not yet been released. You'll find it now in a new staging repository at https://oss.sonatype.org/content/rep...n-plugin-1006/.

                            I've not tested the 4.0 builds in several months, so I'll leave it in staging for a while to make sure there have been no changes that I'm unaware of. Do let me know how you get on with it.

                            Comment


                              #74
                              smartgwt not downloading.

                              I've tried to download several different releases today and none of the downloads will complete. The plugin seems to just hang. The Maven log looks like this:

                              Code:
                              P:\Git\CedarCone\CedarConeInstallation>mvn smartgwt:install -Pisc -Dbuild.date=2013-07-20 -Doverwrite=true 
                              [INFO] Scanning for projects...
                              [INFO]                                                                         
                              [INFO] ------------------------------------------------------------------------
                              [INFO] Building Maven Stub Project (No POM) 1
                              [INFO] ------------------------------------------------------------------------
                              [INFO] 
                              [INFO] >>> smartgwt-maven-plugin:3.1:install (default-cli) @ standalone-pom >>>
                              [INFO] 
                              [INFO] >>> smartgwt-maven-plugin:3.1:prepare (prepare) @ standalone-pom >>>
                              [INFO] 
                              [INFO] >>> smartgwt-maven-plugin:3.1:download (download) @ standalone-pom >>>
                              [INFO] 
                              [INFO] --- smartgwt-maven-plugin:3.1:configure (configure) @ standalone-pom ---
                              [INFO] 
                              [INFO] <<< smartgwt-maven-plugin:3.1:download (download) @ standalone-pom <<<
                              [INFO] 
                              [INFO] --- smartgwt-maven-plugin:3.1:download (download) @ standalone-pom ---
                              [INFO] Authenticating to 'http://www.smartclient.com/devlogin/login.jsp' with username: 'dbscott525'
                              [INFO] Downloading file to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-20\download\smartgwt-eval.zip'
                              Nothing happens after this. My computer has been waiting for over an hour for this to complete. Normally it completes in about 15 minutes.

                              Comment


                                #75
                                can't download 3.1P20130727

                                More information:

                                I can successfully download 7/27/13 4.0:

                                Code:
                                P:\Git\CedarCone\CedarConeInstallation>mvn com.googlecode.smartgwt-maven-plugin:smartgwt-maven-plugin:4.0:install -Pisc -Dbuild.date=2013-07-27 -Doverwrite=true 
                                [INFO] Scanning for projects...
                                [INFO]                                                                         
                                [INFO] ------------------------------------------------------------------------
                                [INFO] Building Maven Stub Project (No POM) 1
                                [INFO] ------------------------------------------------------------------------
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:4.0:install (default-cli) @ standalone-pom >>>
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:4.0:prepare (prepare) @ standalone-pom >>>
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:4.0:download (download) @ standalone-pom >>>
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:4.0:configure (configure) @ standalone-pom ---
                                [INFO] 
                                [INFO] <<< smartgwt-maven-plugin:4.0:download (download) @ standalone-pom <<<
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:4.0:download (download) @ standalone-pom ---
                                [INFO] Authenticating to 'http://www.smartclient.com/devlogin/login.jsp' with username: 'dbscott525'
                                [INFO] Downloading file to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\download\smartgwt-eval.zip'
                                [INFO] Logging off at 'http://www.smartclient.com/logout.jsp'
                                [INFO] 
                                [INFO] <<< smartgwt-maven-plugin:4.0:prepare (prepare) @ standalone-pom <<<
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:4.0:prepare (prepare) @ standalone-pom ---
                                [INFO] Unpacking 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\download\smartgwt-eval.zip' to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked'
                                [INFO] Repackaging client javadoc...
                                [INFO] Repackaging server javadoc...
                                [INFO] Copying documentation to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\LATEST' for convenience...
                                [INFO] Directory contains at least one POM already, skipping pom extraction. Set overwrite.poms = true to change this behavior.
                                [INFO] 
                                [INFO] <<< smartgwt-maven-plugin:4.0:install (default-cli) @ standalone-pom <<<
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:4.0:install (default-cli) @ standalone-pom ---
                                [INFO] Scanning directory 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked' for distribution...
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isc-jakarta-oro.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isc-jakarta-oro\4.0-p20130727\isc-jakarta-oro-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isc-jakarta-oro.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isc-jakarta-oro\4.0-p20130727\isc-jakarta-oro-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_assembly.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-assembly\4.0-p20130727\isomorphic-assembly-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_assembly.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-assembly\4.0-p20130727\isomorphic-assembly-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_compression.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-compression\4.0-p20130727\isomorphic-compression-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_compression.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-compression\4.0-p20130727\isomorphic-compression-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_contentexport.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-content-export\4.0-p20130727\isomorphic-content-export-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_contentexport.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-content-export\4.0-p20130727\isomorphic-content-export-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_core_rpc.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-core-rpc\4.0-p20130727\isomorphic-core-rpc-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_core_rpc.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-core-rpc\4.0-p20130727\isomorphic-core-rpc-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-core-rpc\4.0-p20130727\isomorphic-core-rpc-4.0-p20130727-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_hibernate.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-hibernate\4.0-p20130727\isomorphic-hibernate-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_hibernate.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-hibernate\4.0-p20130727\isomorphic-hibernate-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-hibernate\4.0-p20130727\isomorphic-hibernate-4.0-p20130727-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_jpa.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-jpa\4.0-p20130727\isomorphic-jpa-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_jpa.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-jpa\4.0-p20130727\isomorphic-jpa-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-jpa\4.0-p20130727\isomorphic-jpa-4.0-p20130727-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_js_parser.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-js-parser\4.0-p20130727\isomorphic-js-parser-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_js_parser.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-js-parser\4.0-p20130727\isomorphic-js-parser-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_messaging.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-messaging\4.0-p20130727\isomorphic-messaging-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_messaging.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-messaging\4.0-p20130727\isomorphic-messaging-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-messaging\4.0-p20130727\isomorphic-messaging-4.0-p20130727-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_spring.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-spring\4.0-p20130727\isomorphic-spring-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_spring.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-spring\4.0-p20130727\isomorphic-spring-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_sql.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-sql\4.0-p20130727\isomorphic-sql-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_sql.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-sql\4.0-p20130727\isomorphic-sql-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-sql\4.0-p20130727\isomorphic-sql-4.0-p20130727-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_struts.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-struts\4.0-p20130727\isomorphic-struts-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_struts.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-struts\4.0-p20130727\isomorphic-struts-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_tools.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-tools\4.0-p20130727\isomorphic-tools-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_tools.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-tools\4.0-p20130727\isomorphic-tools-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-tools\4.0-p20130727\isomorphic-tools-4.0-p20130727-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-analytics.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-analytics\4.0-p20130727\smartgwt-analytics-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-analytics.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-analytics\4.0-p20130727\smartgwt-analytics-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-eval.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-eval\4.0-p20130727\smartgwt-eval-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-eval.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-eval\4.0-p20130727\smartgwt-eval-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-messaging.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-messaging\4.0-p20130727\smartgwt-messaging-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-messaging.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-messaging\4.0-p20130727\smartgwt-messaging-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\doc\javadoc-client.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-messaging\4.0-p20130727\smartgwt-messaging-4.0-p20130727-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-skins.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-skins\4.0-p20130727\smartgwt-skins-4.0-p20130727.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\smartgwt-skins.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-skins\4.0-p20130727\smartgwt-skins-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\dependencygroup-batik.xml to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\dependencygroup-batik\4.0-p20130727\dependencygroup-batik-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\dependencygroup-pdfexport.xml to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\dependencygroup-pdfexport\4.0-p20130727\dependencygroup-pdfexport-4.0-p20130727.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\4.0p\2013-07-27\unpacked\isomorphic_network.xml to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-network\4.0-p20130727\isomorphic-network-4.0-p20130727.pom
                                [INFO] ------------------------------------------------------------------------
                                [INFO] BUILD SUCCESS
                                [INFO] ------------------------------------------------------------------------
                                [INFO] Total time: 20:47.749s
                                [INFO] Finished at: Sat Jul 27 11:22:10 PDT 2013
                                [INFO] Final Memory: 8M/318M
                                [INFO] ------------------------------------------------------------------------
                                When I try to download 3.1P-20130727 after about 40 minutes I get the following:

                                Code:
                                P:\Git\CedarCone\CedarConeInstallation>mvn smartgwt:install -Pisc 
                                [INFO] Scanning for projects...
                                [INFO]                                                                         
                                [INFO] ------------------------------------------------------------------------
                                [INFO] Building Maven Stub Project (No POM) 1
                                [INFO] ------------------------------------------------------------------------
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:3.1:install (default-cli) @ standalone-pom >>>
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:3.1:prepare (prepare) @ standalone-pom >>>
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:3.1:download (download) @ standalone-pom >>>
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:3.1:configure (configure) @ standalone-pom ---
                                [INFO] 
                                [INFO] <<< smartgwt-maven-plugin:3.1:download (download) @ standalone-pom <<<
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:3.1:download (download) @ standalone-pom ---
                                [INFO] Authenticating to 'http://www.smartclient.com/devlogin/login.jsp' with username: 'dbscott525'
                                [INFO] Downloading file to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-27\download\smartgwt-eval.zip'
                                [INFO] ------------------------------------------------------------------------
                                [INFO] BUILD FAILURE
                                [INFO] ------------------------------------------------------------------------
                                [INFO] Total time: 28:22.233s
                                [INFO] Finished at: Sat Jul 27 13:01:03 PDT 2013
                                [INFO] Final Memory: 9M/245M
                                [INFO] ------------------------------------------------------------------------
                                [ERROR] Failed to execute goal com.googlecode.smartgwt-maven-plugin:smartgwt-maven-plugin:3.1:download (download) on project standalone-pom: Error writing file to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-27\download\smartgwt-eval.zip': Premature end of Content-Length delimited message body (expected: 277848566; received: 133688107 -> [Help 1]
                                [ERROR] 
                                [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
                                [ERROR] Re-run Maven using the -X switch to enable full debug logging.
                                [ERROR] 
                                [ERROR] For more information about the errors and possible solutions, please read the following articles:
                                [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
                                Additional information:

                                I downloaded 3.1P20130714 and it took 54 minutes. This seems like a long time for a 247MB file. Can someone explain this?

                                Code:
                                P:\Git\CedarCone\CedarConeInstallation>time /T 
                                01:14 PM
                                
                                P:\Git\CedarCone\CedarConeInstallation>mvn smartgwt:install -Pisc -Dbuild.date=2013-07-14 -Doverwrite=true 
                                [INFO] Scanning for projects...
                                [INFO]                                                                         
                                [INFO] ------------------------------------------------------------------------
                                [INFO] Building Maven Stub Project (No POM) 1
                                [INFO] ------------------------------------------------------------------------
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:3.1:install (default-cli) @ standalone-pom >>>
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:3.1:prepare (prepare) @ standalone-pom >>>
                                [INFO] 
                                [INFO] >>> smartgwt-maven-plugin:3.1:download (download) @ standalone-pom >>>
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:3.1:configure (configure) @ standalone-pom ---
                                [INFO] 
                                [INFO] <<< smartgwt-maven-plugin:3.1:download (download) @ standalone-pom <<<
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:3.1:download (download) @ standalone-pom ---
                                [INFO] Authenticating to 'http://www.smartclient.com/devlogin/login.jsp' with username: 'dbscott525'
                                [INFO] Downloading file to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\download\smartgwt-eval.zip'
                                [INFO] Logging off at 'http://www.smartclient.com/logout.jsp'
                                [INFO] 
                                [INFO] <<< smartgwt-maven-plugin:3.1:prepare (prepare) @ standalone-pom <<<
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:3.1:prepare (prepare) @ standalone-pom ---
                                [INFO] Unpacking 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\download\smartgwt-eval.zip' to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked'
                                [INFO] Repackaging client javadoc...
                                [INFO] Repackaging server javadoc...
                                [INFO] Copying documentation to 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\LATEST' for convenience...
                                [INFO] Extracting POMs...
                                [INFO] 
                                [INFO] <<< smartgwt-maven-plugin:3.1:install (default-cli) @ standalone-pom <<<
                                [INFO] 
                                [INFO] --- smartgwt-maven-plugin:3.1:install (default-cli) @ standalone-pom ---
                                [INFO] Scanning directory 'C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked' for distribution...
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isc-jakarta-oro.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isc-jakarta-oro\3.1-p20130714\isc-jakarta-oro-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isc-jakarta-oro.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isc-jakarta-oro\3.1-p20130714\isc-jakarta-oro-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_assembly.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-assembly\3.1-p20130714\isomorphic-assembly-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_assembly.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-assembly\3.1-p20130714\isomorphic-assembly-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_compression.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-compression\3.1-p20130714\isomorphic-compression-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_compression.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-compression\3.1-p20130714\isomorphic-compression-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_contentexport.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-content-export\3.1-p20130714\isomorphic-content-export-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_contentexport.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-content-export\3.1-p20130714\isomorphic-content-export-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_core_rpc.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-core-rpc\3.1-p20130714\isomorphic-core-rpc-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_core_rpc.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-core-rpc\3.1-p20130714\isomorphic-core-rpc-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-core-rpc\3.1-p20130714\isomorphic-core-rpc-3.1-p20130714-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_hibernate.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-hibernate\3.1-p20130714\isomorphic-hibernate-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_hibernate.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-hibernate\3.1-p20130714\isomorphic-hibernate-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-hibernate\3.1-p20130714\isomorphic-hibernate-3.1-p20130714-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_jpa.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-jpa\3.1-p20130714\isomorphic-jpa-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_jpa.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-jpa\3.1-p20130714\isomorphic-jpa-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-jpa\3.1-p20130714\isomorphic-jpa-3.1-p20130714-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_js_parser.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-js-parser\3.1-p20130714\isomorphic-js-parser-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_js_parser.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-js-parser\3.1-p20130714\isomorphic-js-parser-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_messaging.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-messaging\3.1-p20130714\isomorphic-messaging-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_messaging.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-messaging\3.1-p20130714\isomorphic-messaging-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-messaging\3.1-p20130714\isomorphic-messaging-3.1-p20130714-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_spring.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-spring\3.1-p20130714\isomorphic-spring-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_spring.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-spring\3.1-p20130714\isomorphic-spring-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_sql.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-sql\3.1-p20130714\isomorphic-sql-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_sql.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-sql\3.1-p20130714\isomorphic-sql-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-sql\3.1-p20130714\isomorphic-sql-3.1-p20130714-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_struts.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-struts\3.1-p20130714\isomorphic-struts-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_struts.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-struts\3.1-p20130714\isomorphic-struts-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_tools.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-tools\3.1-p20130714\isomorphic-tools-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_tools.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-tools\3.1-p20130714\isomorphic-tools-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\doc\javadoc-server.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-tools\3.1-p20130714\isomorphic-tools-3.1-p20130714-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-analytics.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-analytics\3.1-p20130714\smartgwt-analytics-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-analytics.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-analytics\3.1-p20130714\smartgwt-analytics-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-eval.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-eval\3.1-p20130714\smartgwt-eval-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-eval.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-eval\3.1-p20130714\smartgwt-eval-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-messaging.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-messaging\3.1-p20130714\smartgwt-messaging-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-messaging.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-messaging\3.1-p20130714\smartgwt-messaging-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\doc\javadoc-client.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-messaging\3.1-p20130714\smartgwt-messaging-3.1-p20130714-javadoc.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-skins.jar to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-skins\3.1-p20130714\smartgwt-skins-3.1-p20130714.jar
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\smartgwt-skins.pom to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\smartgwt-skins\3.1-p20130714\smartgwt-skins-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\dependencygroup-batik.xml to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\dependencygroup-batik\3.1-p20130714\dependencygroup-batik-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\dependencygroup-pdfexport.xml to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\dependencygroup-pdfexport\3.1-p20130714\dependencygroup-pdfexport-3.1-p20130714.pom
                                [INFO] Installing C:\Users\bruce\AppData\Local\Temp\smartgwt-maven-plugin\EVAL\3.1p\2013-07-14\unpacked\isomorphic_network.xml to C:\Users\bruce\.m2\repository\com\isomorphic\smartgwt\isomorphic-network\3.1-p20130714\isomorphic-network-3.1-p20130714.pom
                                [INFO] ------------------------------------------------------------------------
                                [INFO] BUILD SUCCESS
                                [INFO] ------------------------------------------------------------------------
                                [INFO] Total time: 54:30.919s
                                [INFO] Finished at: Sat Jul 27 14:08:41 PDT 2013
                                [INFO] Final Memory: 9M/309M
                                [INFO] ------------------------------------------------------------------------
                                Last edited by dbscott525; 27 Jul 2013, 13:28. Reason: further information

                                Comment

                                Working...
                                X