Advertisement
kyla03

root pom.xml

May 4th, 2021
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 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.maven.parents</groupId>
  7. <artifactId>maven-parent-openmrs-module</artifactId>
  8. <version>1.1.1</version>
  9. </parent>
  10.  
  11. <groupId>org.openmrs.module</groupId>
  12. <artifactId>fdahplat</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <packaging>pom</packaging>
  15. <name>Fdahplat</name>
  16. <description>no description</description>
  17.  
  18. <url>https://wiki.openmrs.org/x/FQ4z</url>
  19.  
  20. <scm>
  21. <connection>scm:git:git@github.com:openmrs/openmrs-module-fdahplat.git</connection>
  22. <developerConnection>scm:git:git@github.com:openmrs/openmrs-module-fdahplat.git</developerConnection>
  23. <url>https://github.com/openmrs/openmrs-module-fdahplat/</url>
  24. </scm>
  25.  
  26. <modules>
  27. <module>api</module>
  28. <module>omod</module>
  29. </modules>
  30.  
  31. <repositories>
  32. <repository>
  33. <id>openmrs-repo</id>
  34. <name>OpenMRS Nexus Repository</name>
  35. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  36. </repository>
  37. <repository>
  38. <id>central</id>
  39. <name>Maven Repository Switchboard</name>
  40. <layout>default</layout>
  41. <url>http://repo1.maven.org/maven2</url>
  42. </repository>
  43. </repositories>
  44. <pluginRepositories>
  45. <pluginRepository>
  46. <id>openmrs-repo</id>
  47. <name>OpenMRS Nexus Repository</name>
  48. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  49. <snapshots>
  50. <enabled>false</enabled>
  51. </snapshots>
  52. </pluginRepository>
  53. </pluginRepositories>
  54.  
  55. <properties>
  56. <openmrsPlatformVersion>1.11.6</openmrsPlatformVersion>
  57. </properties>
  58.  
  59. <dependencyManagement>
  60. <dependencies>
  61. <!-- Depends on uiframework module -->
  62. <dependency>
  63. <groupId>org.openmrs.module</groupId>
  64. <artifactId>uiframework-api</artifactId>
  65. <version>3.20.0</version>
  66. <type>jar</type>
  67. <scope>provided</scope>
  68. </dependency>
  69. </dependencies>
  70. </dependencyManagement>
  71.  
  72.  
  73.  
  74. </project>
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement