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.

86 lines
3.0 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.10-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. </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. <configuration>
  68. <excludes>
  69. <exclude>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. </exclude>
  73. </excludes>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>