dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #31414
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 15991: Minor
------------------------------------------------------------
revno: 15991
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2014-07-07 09:29:24 +0200
message:
Minor
modified:
dhis-2/dhis-web/dhis-web-api/pom.xml
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/webdomain/Forms.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-api/pom.xml'
--- dhis-2/dhis-web/dhis-web-api/pom.xml 2014-07-06 17:12:17 +0000
+++ dhis-2/dhis-web/dhis-web-api/pom.xml 2014-07-07 07:29:24 +0000
@@ -19,6 +19,10 @@
<dependencies>
<dependency>
<groupId>org.hisp.dhis</groupId>
+ <artifactId>dhis-web-commons</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.hisp.dhis</groupId>
<artifactId>dhis-api</artifactId>
</dependency>
<dependency>
=== modified file 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/webdomain/Forms.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/webdomain/Forms.java 2014-07-01 10:10:50 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/webdomain/Forms.java 2014-07-07 07:29:24 +0000
@@ -28,15 +28,15 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.google.common.collect.Maps;
-import org.hisp.dhis.option.OptionSet;
-import org.hisp.dhis.webapi.webdomain.form.Form;
-
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+import org.hisp.dhis.webapi.webdomain.form.Form;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.google.common.collect.Maps;
+
/**
* @author Morten Olav Hansen <mortenoh@xxxxxxxxx>
*/