pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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-codegen</artifactId>
  12. <name>Spring Cloud AWS S3 Integration Code Generation</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.github.javaparser</groupId>
  16. <artifactId>javaparser-symbol-solver-core</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>software.amazon.awssdk</groupId>
  20. <artifactId>s3</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-core</artifactId>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <resources>
  29. <resource> <!-- Include raw java files so that the generator can use them as a template -->
  30. <directory>src/main/java</directory>
  31. </resource>
  32. </resources>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-deploy-plugin</artifactId>
  37. <version>2.7</version>
  38. <configuration>
  39. <skip>true</skip>
  40. </configuration>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>