044c9684bc998cd0ae557d7d79b86ad787ab70b3.svn-base 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <!--引入微服务启动依赖 starter
  29. <dependency>
  30. <groupId>org.jeecgframework.boot</groupId>
  31. <artifactId>jeecg-boot-starter-cloud</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jeecgframework.boot</groupId>
  35. <artifactId>jeecg-boot-starter-job</artifactId>
  36. </dependency>-->
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.5.1</version>
  44. <configuration>
  45. <compilerArgs>
  46. <!-- 过期的方法的警告-->
  47. <arg>-Xlint:deprecation</arg>
  48. </compilerArgs>
  49. <compilerArguments>
  50. <!-- 是否输出所有的编译信息(包括类的加载等)-->
  51. <!--<verbose />-->
  52. <!-- 解决maven命令编译报错,因为rt.jar 和jce.jar在jre的lib下面,不在jdk的lib下面,
  53. 导致maven找不到(java7以后会出现这个问题),将这2个jar包拷贝到jdk的lib下面估计也好使-->
  54. <bootclasspath>${java.home}\lib\rt.jar;${java.home}\lib\jce.jar</bootclasspath>
  55. </compilerArguments>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>