Im Rahmen der Veranstaltung "CS3330 - Projektpraktikum MedizinischeInformatik" an der Universität zu Lübeck entstandenes Krankenhausinformationssystem (KIS).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
4.4 KiB

  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>imi</groupId>
  5. <artifactId>projMI-Gruppe06</artifactId>
  6. <version>1.0</version>
  7. <name>Gruppe 06 ProjektMI</name>
  8. <build>
  9. <plugins>
  10. <plugin>
  11. <artifactId>maven-assembly-plugin</artifactId>
  12. <executions>
  13. <execution>
  14. <phase>package</phase>
  15. <goals>
  16. <goal>single</goal>
  17. </goals>
  18. </execution>
  19. </executions>
  20. <configuration>
  21. <archive>
  22. <manifest>
  23. <addClasspath>true</addClasspath>
  24. <mainClass>de.uniluebeck.mi.projmi6.Main</mainClass>
  25. </manifest>
  26. </archive>
  27. <descriptorRefs>
  28. <descriptorRef>jar-with-dependencies</descriptorRef>
  29. </descriptorRefs>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <artifactId>maven-jar-plugin</artifactId>
  34. <configuration>
  35. <archive>
  36. <manifest>
  37. <addClasspath>true</addClasspath>
  38. <classpathPrefix>lib/</classpathPrefix>
  39. <mainClass>de.uniluebeck.mi.projmi6.Main</mainClass>
  40. </manifest>
  41. </archive>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <configuration>
  48. <source>1.8</source>
  49. <target>1.8</target>
  50. </configuration>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-source-plugin</artifactId>
  55. <executions>
  56. <execution>
  57. <id>attach-sources</id>
  58. <goals>
  59. <goal>jar</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-javadoc-plugin</artifactId>
  67. <executions>
  68. <execution>
  69. <id>attach-javadocs</id>
  70. <goals>
  71. <goal>jar</goal>
  72. </goals>
  73. <configuration>
  74. <additionalparam>-Xdoclint:none</additionalparam>
  75. </configuration>
  76. </execution>
  77. </executions>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. <dependencies>
  82. <dependency>
  83. <groupId>mysql</groupId>
  84. <artifactId>mysql-connector-java</artifactId>
  85. <version>5.1.36</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>ca.uhn.hapi</groupId>
  89. <artifactId>hapi-base</artifactId>
  90. <version>2.2</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>ca.uhn.hapi</groupId>
  94. <artifactId>hapi-structures-v251</artifactId>
  95. <version>2.2</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>ca.uhn.hapi</groupId>
  99. <artifactId>hapi-structures-v22</artifactId>
  100. <version>2.2</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>ca.uhn.hapi</groupId>
  104. <artifactId>hapi-structures-v25</artifactId>
  105. <version>2.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.slf4j</groupId>
  109. <artifactId>slf4j-log4j12</artifactId>
  110. <version>1.6.6</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>log4j</groupId>
  114. <artifactId>log4j</artifactId>
  115. <version>1.2.17</version>
  116. </dependency>
  117. </dependencies>
  118. </project>