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
Announcement
Collapse
No announcement yet.
X
-
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>
But once it gets downloaded to your local repository you should be fine.
Cheers!
Comment