pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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>java-mcli</artifactId>
  7. <groupId>com.malk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mjava-ruisi</artifactId>
  12. <description>瑞思项目</description>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <!-- 核心模块-->
  19. <!--<dependency>
  20. <groupId>com.malk</groupId>
  21. <artifactId>mjava</artifactId>
  22. <version>${mjava.version}</version>
  23. </dependency>-->
  24. <dependency>
  25. <groupId>com.malk</groupId>
  26. <artifactId>base</artifactId>
  27. <version>1.0-SNAPSHOT</version>
  28. </dependency>
  29. <!--oracle-->
  30. <dependency>
  31. <groupId>com.oracle.database.jdbc</groupId>
  32. <artifactId>ojdbc8</artifactId>
  33. <version>19.3.0.0</version>
  34. </dependency>
  35. <!--mysql-->
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. <version>8.0.28</version>
  40. </dependency>
  41. <!--mybatis-->
  42. <dependency>
  43. <groupId>org.mybatis.spring.boot</groupId>
  44. <artifactId>mybatis-spring-boot-starter</artifactId>
  45. <version>2.1.0</version>
  46. </dependency>
  47. <!--axis-->
  48. <dependency>
  49. <groupId>com.liferay</groupId>
  50. <artifactId>org.apache.axis</artifactId>
  51. <version>1.4.LIFERAY-PATCHED-7</version>
  52. </dependency>
  53. <!--javax-->
  54. <dependency>
  55. <groupId>javax.xml.rpc</groupId>
  56. <artifactId>javax.xml.rpc-api</artifactId>
  57. <version>1.1.2</version>
  58. </dependency>
  59. <!-- 添加Apache Commons Discovery依赖 -->
  60. <dependency>
  61. <groupId>commons-discovery</groupId>
  62. <artifactId>commons-discovery</artifactId>
  63. <version>0.5</version>
  64. </dependency>
  65. <!--hutool工具类-->
  66. <dependency>
  67. <groupId>cn.hutool</groupId>
  68. <artifactId>hutool-all</artifactId>
  69. </dependency>
  70. <!-- JavaMail API -->
  71. <dependency>
  72. <groupId>javax.mail</groupId>
  73. <artifactId>javax.mail-api</artifactId>
  74. <version>1.6.2</version> <!-- 使用适合你项目的版本 -->
  75. </dependency>
  76. <!-- JavaMail 的具体实现(比如使用 com.sun.mail) -->
  77. <dependency>
  78. <groupId>com.sun.mail</groupId>
  79. <artifactId>javax.mail</artifactId>
  80. <version>1.6.2</version> <!-- 使用适合你项目的版本 -->
  81. </dependency>
  82. <!-- JavaBeans Activation Framework (JAF) -->
  83. <dependency>
  84. <groupId>javax.activation</groupId>
  85. <artifactId>activation</artifactId>
  86. <version>1.1.1</version> <!-- 使用适合你项目的版本 -->
  87. </dependency>
  88. <dependency>
  89. <groupId>com.aliyun</groupId>
  90. <artifactId>dingtalk</artifactId>
  91. <version>2.0.14</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.hibernate.common</groupId>
  95. <artifactId>hibernate-commons-annotations</artifactId>
  96. <version>5.1.2.Final</version>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. <version>2.1.1.RELEASE</version>
  105. <configuration>
  106. <includeSystemScope>true</includeSystemScope>
  107. <!-- 如果没有该配置,devtools不会生效: 打包时关闭 -->
  108. <fork>false</fork>
  109. <!-- 避免中文乱码 -->
  110. <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
  111. </configuration>
  112. <!-- 允许生成可运行jar -->
  113. <executions>
  114. <execution>
  115. <goals>
  116. <goal>repackage</goal>
  117. </goals>
  118. </execution>
  119. </executions>
  120. </plugin>
  121. </plugins>
  122. <finalName>${project.artifactId}</finalName>
  123. </build>
  124. </project>