Announcement

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

    Maven downlaod of latest power edition

    Hi,

    While downloading the latest edition, the smartgwt-power is not downloaded. The others like smartgwt-skins, isomorphic-core-rpc ...are downloaded.
    Also, earlier a folder called power was created. Now a folder called poweredition is created. This is the command i am running:
    mvn com.isomorphic:isc-maven-plugin:install -Dproduct=SMARTGWT -Dlicense=POWER -DbuildNumber=6.0p -DbuildDate=2017-05-25
    Please help.

    #2
    I'm currently having the same problem downloading 6.1d. My employer REALLY like the look of the new Tahoe skin so we want to try this with some of the new features.

    I'm running mvn com.isomorphic:isc-maven-plugin:1.1.1:install -Dproduct=SMARTGWT -Dlicense=POWER -DbuildNumber=6.1d -DbuildDate=2017-05-25

    It downloads all the jars correctly, apart from smartgwt-power and isc-jakarta-oro

    Whilst running the command I can see that I get these error messages:

    [WARNING] Expected to find exactly 1 POM matching artifact with name 'isc-jakarta-oro', but found 0. Skpping installation.
    [WARNING] Expected to find exactly 1 POM matching artifact with name 'smartgwt-power', but found 0. Skpping installation.

    Also in the maven/pom directory of the download, I can see that there isn't any poms for these jars.

    Am I doing something wrong? This is the first time I've had to update the version of GWT.

    Regards

    Comment


      #3
      Please help.

      Comment


        #4
        I am still facing the same issue.
        [WARNING] Expected to find exactly 1 POM matching artifact with name 'smartgwt-power', but found 0. Skpping installation.

        Comment


          #5
          I am still not able to download. Please help.

          Comment


            #6
            Thank you for the report, and we apologize for the delay. As you've found, recent nightly builds may be missing the smartgwt-power.pom file. We should have a fix in place soon, but until then, affected users can drop the missing pom (below) on their local installation directory and rerun the plugin using the skipExtraction parameter, changing dates as appropriate. e.g.,


            Code:
            cp smartgwt-power.pom C:/downloads/SmartGWT/PowerEdition/6.1d/2017-05-25/pom
            
            mvn com.isomorphic:isc-maven-plugin:install -Dproduct=SMARTGWT -Dlicense=POWER -DbuildNumber=6.1d -DbuildDate=2017-05-25 -DskipExtraction=true

            Code:
            <project xmlns="http://maven.apache.org/POM/4.0.0"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
                
                <modelVersion>4.0.0</modelVersion>
            
                <description>
                    Unlocks Power-level features of SmartGWT client and server libraries.  Best for Highly skilled teams able to take advantage
                    of advanced productivity features.  See http://smartclient.com/product/
                </description>
            
                <groupId>com.isomorphic.smartgwt.power</groupId>
                <artifactId>smartgwt-power</artifactId>
                <version>6.1-d20170525</version>
            
                <dependencies>
                    <dependency>
                        <groupId>com.isomorphic.smartgwt.power</groupId>
                        <artifactId>isomorphic-core-rpc</artifactId>
                        <version>6.1-d20170525</version>
                    </dependency>
            
                    <dependency>
                        <groupId>com.isomorphic.smartgwt.power</groupId>
                        <artifactId>isc-batchuploader</artifactId>
                        <version>6.1-d20170525</version>
                        <type>pom</type>
                        <optional>true</optional>
                    </dependency>
            
                </dependencies>
            </project>

            Comment


              #7
              Thank you for your response.

              Regards

              Comment


                #8
                Thank you. Works now.

                Comment

                Working...
                X