You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 2.7 KiB

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