pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.elab.core</groupId>
  7. <artifactId>elab-parent</artifactId>
  8. <version>2.0.4.11-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>elab-db</artifactId>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <groupId>org.apache.maven.plugins</groupId>
  16. <artifactId>maven-compiler-plugin</artifactId>
  17. <configuration>
  18. <source>1.8</source>
  19. <target>1.8</target>
  20. </configuration>
  21. </plugin>
  22. </plugins>
  23. </build>
  24. <dependencies>
  25. <!-- https://mvnrepository.com/artifact/ma.glasnost.orika/orika-core -->
  26. <dependency>
  27. <groupId>ma.glasnost.orika</groupId>
  28. <artifactId>orika-core</artifactId>
  29. <version>1.5.2</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.github.jsonzou</groupId>
  33. <artifactId>jmockdata</artifactId>
  34. <version>3.1.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.databene</groupId>
  38. <artifactId>contiperf</artifactId>
  39. <version>2.3.4</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.elab.core</groupId>
  44. <artifactId>elab-core</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.elab.core</groupId>
  49. <artifactId>elab-annotation</artifactId>
  50. <version>${project.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-jdbc</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.aspectj</groupId>
  58. <artifactId>aspectjweaver</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-context</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-test</artifactId>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>druid</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>mysql</groupId>
  75. <artifactId>mysql-connector-java</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>javax.persistence</groupId>
  79. <artifactId>persistence-api</artifactId>
  80. <version>1.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>junit</groupId>
  84. <artifactId>junit</artifactId>
  85. </dependency>
  86. </dependencies>
  87. <distributionManagement>
  88. <repository>
  89. <id>releases</id>
  90. <name>Nexus Release Repository</name>
  91. <url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>
  92. </repository>
  93. </distributionManagement>
  94. </project>