pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.13</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.its</groupId>
  12. <artifactId>its-rota-scheduler</artifactId>
  13. <version>0.0.1</version>
  14. <name>its-rota-scheduler</name>
  15. <description>UTIC ROTA Scheduler</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <netty.version>4.1.52.Final</netty.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <maven.compiler.source>1.8</maven.compiler.source>
  22. <maven.compiler.target>1.8</maven.compiler.target>
  23. <start-class>com.its.rota.scheduler.ItsRotaSchedulerApplication</start-class>
  24. <webapp.lib>C:\java\repository</webapp.lib>
  25. <maven.test.skip>true</maven.test.skip>
  26. </properties>
  27. <repositories>
  28. <repository>
  29. <id>jitpack.io</id>
  30. <url>https://jitpack.io</url>
  31. </repository>
  32. </repositories>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. <version>2.2.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-actuator</artifactId>
  46. </dependency>
  47. <!-- <dependency>-->
  48. <!-- <groupId>org.springframework.boot</groupId>-->
  49. <!-- <artifactId>spring-boot-starter-aop</artifactId>-->
  50. <!-- </dependency>-->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-configuration-processor</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.oracle</groupId>
  58. <artifactId>ojdbc7</artifactId>
  59. <version>12.1.0.2</version>
  60. <scope>system</scope>
  61. <systemPath>${webapp.lib}/ojdbc7-12.1.0.2.jar</systemPath>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. <optional>true</optional>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-maven-plugin</artifactId>
  74. <configuration>
  75. <includeSystemScope>true</includeSystemScope>
  76. <excludes>
  77. <exclude>
  78. <groupId>org.projectlombok</groupId>
  79. <artifactId>lombok</artifactId>
  80. </exclude>
  81. </excludes>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>