Framework library for building GWT applications using the MVP design pattern. On one hand it provides functionality separation, on other, easy data transfer from server to client and vice versa using GWT RPC service
Maven is used to build and deploy.
Run build jar:
$ mvn packageThe resulting jar files are in target/.
Generate the documentation:
$ mvn javadoc:javadocThe resulting HTML files are in target/site/apidocs/.
Any Maven based project can use it directly by adding the appropriate entries to the
dependencies section of its pom.xml file:
<dependencies>
<dependency>
<groupId>org.homedns.mkh</groupId>
<artifactId>dataservice</artifactId>
<version>1.0.7</version>
</dependency>
</dependencies>Packaged jars can be downloaded directly from the Releases page.
Apache License, Version 2.0 Copyright (c) 2012-2017 Mikhail Khodonov. It is free software and may be redistributed under the terms specified in the LICENSE and NOTICE files.
