pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. <artifactId>happyjob-parent</artifactId>
  7. <groupId>com.happyjob</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>happy-job-base-common</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <!-- 项目属性 -->
  15. <properties>
  16. <lib.path>${basedir}/src/main/webapp/WEB-INF/lib</lib.path>
  17. </properties>
  18. <build>
  19. <resources>
  20. <resource>
  21. <directory>src/main/java</directory>
  22. <includes>
  23. <include>**/*.xml</include>
  24. </includes>
  25. </resource>
  26. <resource>
  27. <directory>src/main/resources</directory>
  28. </resource>
  29. </resources>
  30. </build>
  31. <dependencies>
  32. <dependency>
  33. <groupId>QRCoder</groupId>
  34. <artifactId>QRCoder</artifactId>
  35. <version>1.0</version>
  36. <systemPath>${lib.path}/QRCode.jar</systemPath>
  37. <scope>system</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>ojdbc14</groupId>
  41. <artifactId>ojdbc14</artifactId>
  42. <version>10.2.0.3.0</version>
  43. <systemPath>${lib.path}/ojdbc14-10.2.0.3.0.jar</systemPath>
  44. <scope>system</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>batik</groupId>
  48. <artifactId>batik-util</artifactId>
  49. <version>1.6-1</version>
  50. <systemPath>${lib.path}/batik-util-1.7.jar</systemPath>
  51. <scope>system</scope>
  52. </dependency>
  53. <!-- 中文分词 -->
  54. <dependency>
  55. <groupId>org.wltea</groupId>
  56. <artifactId>analyzer</artifactId>
  57. <version>2012_u6</version>
  58. <systemPath>${lib.path}/analyzer-2012_u6.jar</systemPath>
  59. <scope>system</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>gencode</groupId>
  63. <artifactId>gencode</artifactId>
  64. <version>2.0</version>
  65. <systemPath>${lib.path}/org.jeeframework.gencode-2.0-tomcat7.0.jar</systemPath>
  66. <scope>system</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>jeewx</groupId>
  70. <artifactId>jeewx</artifactId>
  71. <version>1.0</version>
  72. <systemPath>${lib.path}/jeewx-api-1.2.0-20180330.jar</systemPath>
  73. <scope>system</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-lang-2.5.jar</groupId>
  77. <artifactId>commons-lang-2.5.jar</artifactId>
  78. <version>1.0.0</version>
  79. <systemPath>${lib.path}/commons-lang-2.5.jar</systemPath>
  80. <scope>system</scope>
  81. </dependency>
  82. <!--阿里云图片服务-->
  83. <dependency>
  84. <groupId>com.aliyun.core</groupId>
  85. <artifactId>aliyun-sdk-core</artifactId>
  86. <version>1.0</version>
  87. <systemPath>${lib.path}/aliyun-java-sdk-core-2.1.7.jar</systemPath>
  88. <scope>system</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.aliyun.sts</groupId>
  92. <artifactId>aliyun-sdk-sts</artifactId>
  93. <version>1.0</version>
  94. <systemPath>${lib.path}/aliyun-java-sdk-sts-2.1.6.jar</systemPath>
  95. <scope>system</scope>
  96. </dependency>
  97. </dependencies>
  98. </project>