Advertisement
Guest User

Untitled

a guest
Dec 6th, 2011
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 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.  
  5. <parent>
  6. <groupId>org.openmrs.module</groupId>
  7. <artifactId>JSSLab</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>org.openmrs.module</groupId>
  11. <artifactId>JSSLab-omod</artifactId>
  12. <packaging>omod</packaging>
  13. <name>JSSLab Module OMOD</name>
  14. <description>Omod project for JSSLab</description>
  15.  
  16.  
  17.  
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.openmrs.module</groupId>
  21. <artifactId>jsslab-api</artifactId>
  22. <version>1.0-SNAPSHOT</version>
  23. </dependency>
  24.  
  25. <dependency>
  26. <groupId>org.openmrs.api</groupId>
  27. <artifactId>openmrs-api</artifactId>
  28. <type>jar</type>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.openmrs.web</groupId>
  32. <artifactId>openmrs-web</artifactId>
  33. <type>jar</type>
  34. </dependency>
  35.  
  36.  
  37. <dependency>
  38. <groupId>org.openmrs.api</groupId>
  39. <artifactId>openmrs-api</artifactId>
  40. <version>${openMRSVersion}</version><!--$NO-MVN-MAN-VER$-->
  41. <type>test-jar</type>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.openmrs.web</groupId>
  46. <artifactId>openmrs-web</artifactId>
  47. <version>${openMRSVersion}</version><!--$NO-MVN-MAN-VER$-->
  48. <type>test-jar</type>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.openmrs.test</groupId>
  53. <artifactId>openmrs-test</artifactId>
  54. <version>${openMRSVersion}</version>
  55. <type>pom</type>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.openmrs.module</groupId>
  60. <artifactId>webservices.rest-api</artifactId>
  61. <version>0.9-SNAPSHOT</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.openmrs.module</groupId>
  65. <artifactId>webservices.rest</artifactId>
  66. <version>0.9-SNAPSHOT</version>
  67. </dependency>
  68. </dependencies>
  69.  
  70. <build>
  71. <resources>
  72. <resource>
  73. <directory>src/main/resources</directory>
  74. <filtering>true</filtering>
  75. </resource>
  76. <resource>
  77. <directory>src/main/webapp</directory>
  78. <filtering>true</filtering>
  79. <excludes>
  80. <exclude>resources</exclude>
  81. </excludes>
  82. <targetPath>web/module</targetPath>
  83. </resource>
  84. <resource>
  85. <directory>src/main/webapp</directory>
  86. <filtering>false</filtering>
  87. <includes>
  88. <include>resources</include>
  89. </includes>
  90. <targetPath>web/module</targetPath>
  91. </resource>
  92. </resources>
  93. <testResources>
  94. <testResource>
  95. <directory>src/test/resources</directory>
  96. <filtering>true</filtering>
  97. <includes>
  98. <include>**/*.xml</include>
  99. <include>**/*.txt</include>
  100. </includes>
  101. </testResource>
  102. <testResource>
  103. <directory>src/test/resources</directory>
  104. <filtering>false</filtering>
  105. <excludes>
  106. <exclude>**/*.xml</exclude>
  107. <exclude>**/*.txt</exclude>
  108. </excludes>
  109. </testResource>
  110. </testResources>
  111. <pluginManagement>
  112. <plugins>
  113. <plugin>
  114. <artifactId>maven-resources-plugin</artifactId>
  115. <configuration>
  116. <includeEmptyDirs>true</includeEmptyDirs>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </pluginManagement>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.openmrs.maven.plugins</groupId>
  124. <artifactId>maven-openmrs-plugin</artifactId>
  125. <extensions>true</extensions>
  126. <configuration>
  127. <verifyOmod>false</verifyOmod>
  128.  
  129. </configuration>
  130. </plugin>
  131. </plugins>
  132. </build>
  133.  
  134.  
  135.  
  136. </project>
  137.  
  138.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement