.flattened-pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.aivfo</groupId>
  7. <artifactId>aivfo-tl-control</artifactId>
  8. <version>2.2.4.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.aivfo</groupId>
  11. <artifactId>aivfo-tl-control-lanucher</artifactId>
  12. <version>2.2.4.0-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.aivfo</groupId>
  16. <artifactId>aivfo-tl-control-controller</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.aivfo</groupId>
  20. <artifactId>aivfo-nacos-spring-boot-starter</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.aivfo</groupId>
  24. <artifactId>aivfo-oplog-client</artifactId>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <resources>
  29. <resource>
  30. <directory>src/main/resources</directory>
  31. <excludes>
  32. <exclude>application-dev.properties</exclude>
  33. <exclude>application-hospital.properties</exclude>
  34. <exclude>application-test.properties</exclude>
  35. </excludes>
  36. </resource>
  37. </resources>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. <version>2.2.7.RELEASE</version>
  43. <executions>
  44. <execution>
  45. <goals>
  46. <goal>repackage</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. <configuration>
  51. <skip>false</skip>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-deploy-plugin</artifactId>
  56. <configuration>
  57. <skip>true</skip>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-assembly-plugin</artifactId>
  62. <executions>
  63. <execution>
  64. <phase>package</phase>
  65. <goals>
  66. <goal>single</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. <configuration>
  71. <descriptors>
  72. <descriptor>src/assembly/assembly.xml</descriptor>
  73. </descriptors>
  74. <finalName>${project.name}</finalName>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.codehaus.mojo</groupId>
  79. <artifactId>buildnumber-maven-plugin</artifactId>
  80. <version>1.4</version>
  81. <executions>
  82. <execution>
  83. <phase>validate</phase>
  84. <goals>
  85. <goal>create-timestamp</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.codehaus.mojo</groupId>
  92. <artifactId>buildnumber-maven-plugin</artifactId>
  93. <version>1.4</version>
  94. <executions>
  95. <execution>
  96. <goals>
  97. <goal>create-timestamp</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. <inherited>false</inherited>
  102. <configuration>
  103. <timestampFormat>yyyyMMddHHmm</timestampFormat>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>