pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>net.yaoyi.pipeline</groupId>
  8. <artifactId>yyc-pipeline</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>fn-rabbitmq</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.slf4j</groupId>
  21. <artifactId>slf4j-api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.slf4j</groupId>
  25. <artifactId>slf4j-simple</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun.fc.runtime</groupId>
  29. <artifactId>fc-java-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>net.yaoyi.pipeline</groupId>
  33. <artifactId>yyc-pipeline-model</artifactId>
  34. <version>1.0.0-SNAPSHOT</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.rabbitmq</groupId>
  38. <artifactId>amqp-client</artifactId>
  39. <version>5.31.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-databind</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.squareup.okhttp3</groupId>
  47. <artifactId>okhttp</artifactId>
  48. <version>4.12.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>net.yaoyi.pipeline</groupId>
  52. <artifactId>fn-common</artifactId>
  53. <version>1.0.0-SNAPSHOT</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-shade-plugin</artifactId>
  63. <version>3.5.1</version>
  64. <executions>
  65. <execution>
  66. <phase>package</phase>
  67. <goals>
  68. <goal>shade</goal>
  69. </goals>
  70. <configuration>
  71. <transformers>
  72. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"/>
  73. </transformers>
  74. </configuration>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>