pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.0.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. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.codehaus.mojo</groupId>
  27. <artifactId>exec-maven-plugin</artifactId>
  28. <version>3.0.0</version>
  29. <dependencies>
  30. <dependency>
  31. <groupId>io.awspring.cloud</groupId>
  32. <artifactId>spring-cloud-aws-s3-codegen</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. </dependencies>
  36. <executions>
  37. <execution>
  38. <id>generate-javaparser-core</id>
  39. <phase>generate-sources</phase>
  40. <goals>
  41. <goal>java</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. <configuration>
  46. <includeProjectDependencies>true</includeProjectDependencies>
  47. <includePluginDependencies>true</includePluginDependencies>
  48. <mainClass>io.awspring.cloud.s3.codegen.CrossRegionS3ClientGenerator</mainClass>
  49. <arguments>
  50. <argument>${project.basedir}</argument>
  51. </arguments>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>