.flattened-pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>io.seata</groupId>
  6. <artifactId>seata-parent</artifactId>
  7. <version>1.6.1</version>
  8. </parent>
  9. <artifactId>seata-distribution</artifactId>
  10. <packaging>pom</packaging>
  11. <name>seata-distribution 1.6.1</name>
  12. <description>distribution for Seata built with Maven</description>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-deploy-plugin</artifactId>
  17. <configuration>
  18. <skip>true</skip>
  19. </configuration>
  20. </plugin>
  21. </plugins>
  22. </build>
  23. <profiles>
  24. <profile>
  25. <id>release-seata</id>
  26. <build>
  27. <finalName>seata</finalName>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-assembly-plugin</artifactId>
  31. <version>${maven-assembly-plugin.version}</version>
  32. <executions>
  33. <execution>
  34. <id>make-assembly</id>
  35. <phase>install</phase>
  36. <goals>
  37. <goal>single</goal>
  38. </goals>
  39. </execution>
  40. </executions>
  41. <configuration>
  42. <descriptors>
  43. <descriptor>release-seata.xml</descriptor>
  44. </descriptors>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. <dependencies>
  50. <dependency>
  51. <groupId>io.seata</groupId>
  52. <artifactId>seata-server</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. </dependencies>
  56. </profile>
  57. </profiles>
  58. </project>