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.

vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
vor 1 Jahr
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.1</tag>
  14. </scm>
  15. <groupId>work.xuye</groupId>
  16. <artifactId>std-news-process</artifactId>
  17. <version>0.0.7-SNAPSHOT</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. </modules>
  28. <properties>
  29. <git_group>fhl</git_group>
  30. <git_project>std-news-process</git_project>
  31. <java.version>11</java.version>
  32. <spring-boot.version>2.7.8</spring-boot.version>
  33. <spring-cloud.version>2021.0.5</spring-cloud.version>
  34. </properties>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-dependencies</artifactId>
  40. <version>${spring-boot.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-dependencies</artifactId>
  47. <version>${spring-cloud.version}</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. <version>${spring-boot.version}</version>
  59. <executions>
  60. <execution>
  61. <goals>
  62. <goal>repackage</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. <configuration>
  67. <excludes>
  68. <exclude>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. </exclude>
  72. </excludes>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>