pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>yyc-ai</groupId>
  5. <artifactId>image-dup-check-feature-extract</artifactId>
  6. <packaging>jar</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>ImageDupCheckFeatureExtract</name>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.yaoyicloud.ai.pipeline</groupId>
  12. <artifactId>yyc-fc-api</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>junit</groupId>
  17. <artifactId>junit</artifactId>
  18. <version>4.13.2</version>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.mockito</groupId>
  23. <artifactId>mockito-core</artifactId>
  24. <version>4.11.0</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun.fc.runtime</groupId>
  29. <artifactId>fc-java-core</artifactId>
  30. <version>1.4.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. <version>1.18.30</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-compiler-plugin</artifactId>
  44. <version>3.8.1</version>
  45. <configuration>
  46. <source>11</source>
  47. <target>11</target>
  48. <annotationProcessorPaths>
  49. <path>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>1.18.30</version>
  53. </path>
  54. </annotationProcessorPaths>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-shade-plugin</artifactId>
  60. <version>3.2.1</version>
  61. <executions>
  62. <execution>
  63. <phase>package</phase>
  64. <goals>
  65. <goal>shade</goal>
  66. </goals>
  67. <configuration>
  68. <filters>
  69. <filter>
  70. <artifact>*:*</artifact>
  71. <excludes>
  72. <exclude>META-INF/*.SF</exclude>
  73. <exclude>META-INF/*.DSA</exclude>
  74. <exclude>META-INF/*.RSA</exclude>
  75. </excludes>
  76. </filter>
  77. </filters>
  78. </configuration>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. <properties>
  85. <maven.compiler.target>11</maven.compiler.target>
  86. <maven.compiler.source>11</maven.compiler.source>
  87. <maven.test.skip>false</maven.test.skip>
  88. </properties>
  89. </project>