pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.4.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-boot-module-demo</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-base-core</artifactId>
  16. </dependency>
  17. <!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl -->
  18. <dependency>
  19. <groupId>com.sun.xml.bind</groupId>
  20. <artifactId>jaxb-impl</artifactId>
  21. <version>2.2.11</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jetbrains</groupId>
  25. <artifactId>annotations</artifactId>
  26. <version>13.0</version>
  27. </dependency>
  28. <!-- <dependency>
  29. <groupId>org.jeecgframework.boot</groupId>
  30. <artifactId>jeecg-boot-module-system</artifactId>
  31. </dependency>-->
  32. <!--引入微服务启动依赖 starter
  33. <dependency>
  34. <groupId>org.jeecgframework.boot</groupId>
  35. <artifactId>jeecg-boot-starter-cloud</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>jeecg-boot-starter-job</artifactId>
  40. </dependency>-->
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>3.5.1</version>
  48. <configuration>
  49. <compilerArgs>
  50. <!-- 过期的方法的警告-->
  51. <arg>-Xlint:deprecation</arg>
  52. </compilerArgs>
  53. <compilerArguments>
  54. <!-- 是否输出所有的编译信息(包括类的加载等)-->
  55. <!--<verbose />-->
  56. <!-- 解决maven命令编译报错,因为rt.jar 和jce.jar在jre的lib下面,不在jdk的lib下面,
  57. 导致maven找不到(java7以后会出现这个问题),将这2个jar包拷贝到jdk的lib下面估计也好使-->
  58. <bootclasspath>${java.home}\lib\rt.jar;${java.home}\lib\jce.jar</bootclasspath>
  59. </compilerArguments>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>