Im Rahmen der Veranstaltung "CS3330 - Projektpraktikum MedizinischeInformatik" an der Universität zu Lübeck entstandenes Krankenhausinformationssystem (KIS).
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

81 行
2.9 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>App</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>App</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. </plugins>
  53. </build>
  54. <dependencies>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. <version>5.1.36</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>ca.uhn.hapi</groupId>
  62. <artifactId>hapi-base</artifactId>
  63. <version>2.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>ca.uhn.hapi</groupId>
  67. <artifactId>hapi-structures-v251</artifactId>
  68. <version>2.2</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-log4j12</artifactId>
  73. <version>1.6.6</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>log4j</groupId>
  77. <artifactId>log4j</artifactId>
  78. <version>1.2.17</version>
  79. </dependency>
  80. </dependencies>
  81. </project>