pom.xml 3.3 KB

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