Advertisement
Guest User

Untitled

a guest
Apr 13th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.28 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <parent>
  5.         <groupId>org.openmrs.module</groupId>
  6.         <artifactId>amrsmobileforms</artifactId>
  7.         <version>1.0.3-HHM-SNAPSHOT</version>
  8.     </parent>
  9.     <groupId>org.openmrs.module</groupId>
  10.     <artifactId>amrsmobileforms-api</artifactId>
  11.     <packaging>jar</packaging>
  12.     <name>AMRS Mobile Forms API</name>
  13.     <description>API project for AMRS Mobile Forms</description>
  14.  
  15.     <dependencies>
  16.        
  17.         <dependency>
  18.             <groupId>org.openmrs.module</groupId>
  19.             <artifactId>household</artifactId>
  20.         </dependency>
  21.        
  22.         <dependency>
  23.             <groupId>org.openmrs.module</groupId>
  24.             <artifactId>xforms</artifactId>
  25.         </dependency>
  26.        
  27.         <dependency>
  28.             <groupId>org.openmrs.api</groupId>
  29.             <artifactId>openmrs-api</artifactId>
  30.             <type>jar</type>
  31.         </dependency>
  32.        
  33.         <dependency>
  34.             <groupId>org.openmrs.web</groupId>
  35.             <artifactId>openmrs-web</artifactId>
  36.             <type>jar</type>
  37.         </dependency>
  38.        
  39.         <dependency>
  40.             <groupId>org.openmrs.test</groupId>
  41.             <artifactId>openmrs-test</artifactId>
  42.             <type>jar</type>
  43.         </dependency>
  44.        
  45.     </dependencies>
  46.  
  47. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement