pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>io.awspring.cloud</groupId>
  8. <artifactId>spring-cloud-aws-s3-parent</artifactId>
  9. <version>3.1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>spring-cloud-aws-s3-cross-region-client</artifactId>
  12. <name>Spring Cloud AWS S3 Cross Region Client</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>software.amazon.awssdk</groupId>
  16. <artifactId>s3</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.testcontainers</groupId>
  24. <artifactId>localstack</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.testcontainers</groupId>
  29. <artifactId>junit-jupiter</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.codehaus.mojo</groupId>
  37. <artifactId>exec-maven-plugin</artifactId>
  38. <version>3.0.0</version>
  39. <dependencies>
  40. <dependency>
  41. <groupId>io.awspring.cloud</groupId>
  42. <artifactId>spring-cloud-aws-s3-codegen</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. </dependencies>
  46. <executions>
  47. <execution>
  48. <id>generate-javaparser-core</id>
  49. <phase>generate-sources</phase>
  50. <goals>
  51. <goal>java</goal>
  52. </goals>
  53. </execution>
  54. </executions>
  55. <configuration>
  56. <includeProjectDependencies>true</includeProjectDependencies>
  57. <includePluginDependencies>true</includePluginDependencies>
  58. <mainClass>io.awspring.cloud.s3.codegen.AbstractCrossRegionS3ClientGenerator</mainClass>
  59. <arguments>
  60. <argument>${project.build.sourceDirectory}</argument>
  61. </arguments>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>