pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>yyc-ai</groupId>
  6. <artifactId>read-oss-test-data</artifactId>
  7. <packaging>jar</packaging>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>ReadOssTestData</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.yaoyicloud.ai.pipeline</groupId>
  13. <artifactId>yyc-fc-api</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.aliyun.fc.runtime</groupId>
  18. <artifactId>fc-java-core</artifactId>
  19. <version>1.4.1</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.13.2</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mockito</groupId>
  29. <artifactId>mockito-core</artifactId>
  30. <version>4.11.0</version>
  31. <scope>test</scope>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-shade-plugin</artifactId>
  39. <version>3.2.1</version>
  40. <executions>
  41. <execution>
  42. <phase>package</phase>
  43. <goals>
  44. <goal>shade</goal>
  45. </goals>
  46. <configuration>
  47. <filters>
  48. <filter>
  49. <artifact>*:*</artifact>
  50. <excludes>
  51. <exclude>META-INF/*.SF</exclude>
  52. <exclude>META-INF/*.DSA</exclude>
  53. <exclude>META-INF/*.RSA</exclude>
  54. </excludes>
  55. </filter>
  56. </filters>
  57. </configuration>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. <properties>
  64. <maven.compiler.target>11</maven.compiler.target>
  65. <maven.compiler.source>11</maven.compiler.source>
  66. <maven.test.skip>false</maven.test.skip>
  67. </properties>
  68. </project>