Advertisement
Guest User

pom with jaxb

a guest
Aug 19th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 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>integration</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10.  
  11. <artifactId>integration-api</artifactId>
  12. <packaging>jar</packaging>
  13. <name>Integration Module API</name>
  14. <description>API project for Integration</description>
  15.  
  16. <dependencies>
  17.  
  18. <!--
  19. Add other dependencies from parent's pom:
  20. <dependency>
  21. <groupId>org.other.library</groupId>
  22. <artifactId>library-name</artifactId>
  23. </dependency>
  24. -->
  25.  
  26.  
  27.  
  28. <!-- Begin OpenMRS modules -->
  29.  
  30. <dependency>
  31. <groupId>org.openmrs.module</groupId>
  32. <artifactId>reporting-api</artifactId>
  33. </dependency>
  34.  
  35. <!-- End OpenMRS modules -->
  36.  
  37.  
  38. <!-- Begin OpenMRS core -->
  39.  
  40. <dependency>
  41. <groupId>org.openmrs.api</groupId>
  42. <artifactId>openmrs-api</artifactId>
  43. <type>jar</type>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>org.openmrs.web</groupId>
  48. <artifactId>openmrs-web</artifactId>
  49. <type>jar</type>
  50. </dependency>
  51.  
  52. <dependency>
  53. <groupId>org.openmrs.api</groupId>
  54. <artifactId>openmrs-api</artifactId>
  55. <type>test-jar</type>
  56. <scope>test</scope>
  57. </dependency>
  58.  
  59. <dependency>
  60. <groupId>org.openmrs.web</groupId>
  61. <artifactId>openmrs-web</artifactId>
  62. <type>test-jar</type>
  63. <scope>test</scope>
  64. </dependency>
  65.  
  66. <dependency>
  67. <groupId>org.openmrs.test</groupId>
  68. <artifactId>openmrs-test</artifactId>
  69. <type>pom</type>
  70. <scope>test</scope>
  71. </dependency>
  72.  
  73. <!-- End OpenMRS core -->
  74.  
  75. <dependency>
  76. <groupId>com.sun.xml.bind</groupId>
  77. <artifactId>jaxb-impl</artifactId>
  78. <version>2.2.6</version>
  79. </dependency>
  80.  
  81. <dependency>
  82. <groupId>org.jvnet.jaxb2.maven2</groupId>
  83. <artifactId>maven-jaxb2-plugin</artifactId>
  84. <version>0.8.3</version>
  85. </dependency>
  86.  
  87. <dependency>
  88. <groupId>org.jvnet.jaxb2_commons</gr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement