Advertisement
kyla03

omod/pom.xml

May 4th, 2021
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 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>fdahplat</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9.  
  10. <artifactId>fdahplat-omod</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Fdahplat OMOD</name>
  13. <description>Omod submodule for Fdahplat</description>
  14.  
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.openmrs.module</groupId>
  18. <artifactId>fdahplat-api</artifactId>
  19. <version>1.0.0-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.openmrs.web</groupId>
  23. <artifactId>openmrs-web</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.openmrs.web</groupId>
  28. <artifactId>openmrs-web</artifactId>
  29. <scope>provided</scope>
  30. <classifier>tests</classifier>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.openmrs.module</groupId>
  34. <artifactId>uiframework-api</artifactId>
  35. </dependency>
  36. </dependencies>
  37.  
  38. <build>
  39. <finalName>${project.parent.artifactId}-${project.parent.version}</finalName>
  40.  
  41. <plugins>
  42. <plugin>
  43. <groupId>org.openmrs.maven.plugins</groupId>
  44. <artifactId>maven-openmrs-plugin</artifactId>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-dependency-plugin</artifactId>
  49. </plugin>
  50. </plugins>
  51. </build>
  52.  
  53. </project>
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement