拓恒统一认证授权服务
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

54 Zeilen
1.7KB

  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.7.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <modules>
  12. <module>tuoheng_oidc_server</module>
  13. </modules>
  14. <groupId>com.tuoheng</groupId>
  15. <artifactId>tuoheng_oidc</artifactId>
  16. <version>1.0.0</version>
  17. <name>tuoheng_oidc</name>
  18. <description>tuoheng_oidc</description>
  19. <properties>
  20. <java.version>1.8</java.version>
  21. <tuoheng.version>1.0.0</tuoheng.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.tuoheng</groupId>
  35. <artifactId>tuoheng_oidc_server</artifactId>
  36. <version>${tuoheng.version}</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-resources-plugin</artifactId>
  44. <version>3.1.0</version>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>