Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

79 řádky
2.7 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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>tech.deepq</groupId>
  7. <artifactId>sq-root</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <scm>
  11. <connection>scm:git:ssh://git@git.deepq.tech:1122/${git_group}/${git_project}.git</connection>
  12. <developerConnection>scm:git:ssh://git@git.deepq.tech:1122/${git_group}/${git_project}.git</developerConnection>
  13. <url>https://git.deepq.tech/${git_group}/${git_project}.git</url>
  14. <tag>v0.0.1</tag>
  15. </scm>
  16. <groupId>work.xuye</groupId>
  17. <artifactId>std-news-process</artifactId>
  18. <version>0.0.13-SNAPSHOT</version>
  19. <name>std-news-process</name>
  20. <description>外部结构化资讯接入程序</description>
  21. <packaging>pom</packaging>
  22. <modules>
  23. <module>common</module>
  24. <module>scheduler</module>
  25. <module>source</module>
  26. <module>transformer</module>
  27. <module>sink</module>
  28. <module>helper</module>
  29. </modules>
  30. <properties>
  31. <git_group>fhl</git_group>
  32. <git_project>std-news-process</git_project>
  33. <java.version>11</java.version>
  34. <spring-boot.version>2.7.8</spring-boot.version>
  35. <spring-cloud.version>2021.0.5</spring-cloud.version>
  36. </properties>
  37. <dependencyManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-dependencies</artifactId>
  42. <version>${spring-boot.version}</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.cloud</groupId>
  48. <artifactId>spring-cloud-dependencies</artifactId>
  49. <version>${spring-cloud.version}</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-maven-plugin</artifactId>
  60. <version>${spring-boot.version}</version>
  61. <executions>
  62. <execution>
  63. <goals>
  64. <goal>repackage</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>