Announcement

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

    Maven Settings to get SMART GWT 3.0

    Hi all SmartGwt's

    I am trying to get Smart GWT 3.0 from maven (I read it should be there, but Maven tells me it cannot find the dependency.) I believe my settings is correct, would someone know to correct settings?

    <repositories>
    <repository>
    <id>smartclient</id>
    <name>smartclient.com</name>
    <url>http://www.smartclient.com/maven2</url>
    </repository>
    </repositories>

    <properties>
    <!-- Convenience property to set the GWT version -->
    <gwtVersion>2.4.0</gwtVersion>
    <smartGwtVersion>2.5</smartGwtVersion>
    </properties>

    <dependency>
    <groupId>com.google.gwt</groupId>
    <artifactId>gwt-user</artifactId>
    <version>${gwtVersion}</version>
    <scope>provided</scope>
    </dependency>

    <dependency>
    <groupId>com.smartgwt</groupId>
    <artifactId>smartgwt</artifactId>
    <version>${smartGwtVersion}</version>
    </dependency>

    Tkhs

    #2
    And yes, I tried to set the properties: Which maven then cannot find.

    <properties>
    <!-- Convenience property to set the GWT version -->
    <gwtVersion>2.4.0</gwtVersion>
    <smartGwtVersion>3.0</smartGwtVersion>
    </properties>

    Comment


      #3
      Bumping this thread, because, for sure, not only I am interested in updating their smartgwt version in their maven projects.
      Last edited by Cornelius7C5; 21 Jan 2013, 03:34.

      Comment

      Working...
      X