------------------------------------------------------------ revno: 1169 committer: Lars Helge Oeverland [email protected] branch nick: trunk timestamp: Fri 2009-12-04 16:50:10 +0100 message: Skeleton for dhis mobile projects. added: dhis-mobile/ dhis-mobile/dhis-servce-mobile/ dhis-mobile/dhis-servce-mobile/pom.xml dhis-mobile/dhis-web-mobile/ dhis-mobile/dhis-web-mobile/pom.xml
-- 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.
=== added directory 'dhis-mobile' === added directory 'dhis-mobile/dhis-servce-mobile' === added file 'dhis-mobile/dhis-servce-mobile/pom.xml' --- dhis-mobile/dhis-servce-mobile/pom.xml 1970-01-01 00:00:00 +0000 +++ dhis-mobile/dhis-servce-mobile/pom.xml 2009-12-04 15:50:10 +0000 @@ -0,0 +1,33 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.hisp.dhis</groupId> + <artifactId>dhis-services</artifactId> + <version>2.0.3-SNAPSHOT</version> + </parent> + + <artifactId>dhis-service-mobile</artifactId> + <packaging>jar</packaging> + <name>DHIS Mobile Service</name> + + <dependencies> + + <!-- DHIS --> + + <dependency> + <groupId>org.hisp.dhis</groupId> + <artifactId>dhis-api</artifactId> + </dependency> + <dependency> + <groupId>org.hisp.dhis</groupId> + <artifactId>dhis-service-core</artifactId> + </dependency> + + </dependencies> + <properties> + <rootDir>../../</rootDir> + </properties> +</project> === added directory 'dhis-mobile/dhis-web-mobile' === added file 'dhis-mobile/dhis-web-mobile/pom.xml' --- dhis-mobile/dhis-web-mobile/pom.xml 1970-01-01 00:00:00 +0000 +++ dhis-mobile/dhis-web-mobile/pom.xml 2009-12-04 15:50:10 +0000 @@ -0,0 +1,38 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.hisp.dhis</groupId> + <artifactId>dhis-web</artifactId> + <version>2.0.3-SNAPSHOT</version> + </parent> + + <artifactId>dhis-web-mobile</artifactId> + <packaging>war</packaging> + <name>DHIS Mobile</name> + + <build> + <finalName>dhis-web-mobile</finalName> + </build> + + <dependencies> + + <!-- DHIS --> + + <dependency> + <groupId>org.hisp.dhis</groupId> + <artifactId>dhis-web-commons</artifactId> + </dependency> + <dependency> + <groupId>org.hisp.dhis</groupId> + <artifactId>dhis-web-commons-resources</artifactId> + <type>war</type> + </dependency> + + </dependencies> + <properties> + <rootDir>../../</rootDir> + </properties> +</project>
_______________________________________________ Mailing list: https://launchpad.net/~dhis2-devs Post to : [email protected] Unsubscribe : https://launchpad.net/~dhis2-devs More help : https://help.launchpad.net/ListHelp

