pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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.5.2-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>org.springframework</groupId>-->
  28. <!--<artifactId>spring-jdbc</artifactId>-->
  29. <!--<version>5.1.3.RELEASE</version>-->
  30. <!--</dependency>-->
  31. <dependency>
  32. <groupId>org.slf4j</groupId>
  33. <artifactId>slf4j-log4j12</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>ma.glasnost.orika</groupId>
  38. <artifactId>orika-core</artifactId>
  39. <version>1.5.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.jsonzou</groupId>
  43. <artifactId>jmockdata</artifactId>
  44. <version>3.1.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.databene</groupId>
  48. <artifactId>contiperf</artifactId>
  49. <version>2.3.4</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.elab.core</groupId>
  54. <artifactId>elab-core</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.elab.core</groupId>
  59. <artifactId>elab-annotation</artifactId>
  60. <version>${project.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-jdbc</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.aspectj</groupId>
  68. <artifactId>aspectjweaver</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-context</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-test</artifactId>
  77. <scope>provided</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>druid</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>mysql</groupId>
  85. <artifactId>mysql-connector-java</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>javax.persistence</groupId>
  89. <artifactId>persistence-api</artifactId>
  90. <version>1.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>junit</groupId>
  94. <artifactId>junit</artifactId>
  95. </dependency>
  96. </dependencies>
  97. <distributionManagement>
  98. <repository>
  99. <id>releases</id>
  100. <name>Nexus Release Repository</name>
  101. <url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>
  102. </repository>
  103. </distributionManagement>
  104. </project>