Announcement

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

    Smartgwt 2.5 maven repository

    Hi guys, i wan't to upgrade to smartgwt 2.5, i am currently using 2.4, i have a pom file(Maven) that points to 2.4 but when try to point it 2.5 it is unable to locate the dependencies. i have checked http://www.smartclient.com/maven2 and a few other repositories and was unable to to 2.5. please advise, thanks in advance

    #2
    I've had it working with the following configuration in my pom.xml
    Code:
            <repositories>
    		<repository>
    			<id>smartclient</id>
    			<name>smartclient.com</name>
    			<url>http://www.smartclient.com/maven2</url>
    		</repository>
    	</repositories>
            <dependencies>
    		<dependency>
    			<groupId>com.smartgwt</groupId>
    			<artifactId>smartgwt</artifactId>
    			<version>2.5</version>
    		</dependency>
    	</dependencies>
    I don't know how reliable the smartclient maven repo is (read uptime) because I had trouble with it when I added it to my settings.xml file, afterwards I added it to the pom directly and it worked (i'm not sure how much time passed, could be days).

    But once it gets downloaded to your local repository you should be fine.

    Cheers!

    Comment

    Working...
    X