pom.xml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <groupId>com.qmth.cas.exchange</groupId>
  6. <artifactId>cas-exchange</artifactId>
  7. <version>2.0.0.4</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>com.qmth.teachcloud.exchange.service</groupId>
  11. <artifactId>teachcloud-exchange-service</artifactId>
  12. <version>2.0.0.4</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.qmth.teachcloud.exchange.common</groupId>
  17. <artifactId>teachcloud-exchange-common</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. <version>${spring-boot.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.tomcat.embed</groupId>
  26. <artifactId>tomcat-embed-core</artifactId>
  27. <version>9.0.64</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.qmth.boot</groupId>
  32. <artifactId>data-redis</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.qmth.cas</groupId>
  36. <artifactId>cas-client-core</artifactId>
  37. <version>3.1.12</version>
  38. <scope>system</scope>
  39. <systemPath>${project.basedir}/src/main/resources/lib/cas-client-core-3.1.12.jar</systemPath>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.qmth.cas</groupId>
  43. <artifactId>sso-client-java</artifactId>
  44. <version>7.0.8</version>
  45. <scope>system</scope>
  46. <systemPath>${project.basedir}/src/main/resources/lib/sso-client-java-7.0.8.jar</systemPath>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.qmth.cas</groupId>
  50. <artifactId>ly-uap</artifactId>
  51. <version>3.2.0</version>
  52. <scope>system</scope>
  53. <systemPath>${project.basedir}/src/main/resources/lib/ly-uap.3.2.0.jar</systemPath>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <version>2.6.2</version>
  62. <configuration>
  63. <includeSystemScope>true</includeSystemScope>
  64. </configuration>
  65. <executions>
  66. <execution>
  67. <goals>
  68. <goal>repackage</goal>
  69. </goals>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. <plugin>
  74. <groupId>com.spotify</groupId>
  75. <artifactId>dockerfile-maven-plugin</artifactId>
  76. <version>1.4.12</version>
  77. <configuration>
  78. <repository>registry.cn-shenzhen.aliyuncs.com/cas-exchange</repository>
  79. <tag>${project.version}</tag>
  80. <contextDirectory>${project.baseDir}</contextDirectory>
  81. <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
  82. <pullNewerImage>true</pullNewerImage>
  83. <buildArgs>
  84. <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
  85. </buildArgs>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>