123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.awspring.cloud</groupId>
- <artifactId>spring-cloud-aws-s3-parent</artifactId>
- <version>3.1.1-SNAPSHOT</version>
- </parent>
- <artifactId>spring-cloud-aws-s3-codegen</artifactId>
- <name>Spring Cloud AWS S3 Integration Code Generation</name>
- <dependencies>
- <dependency>
- <groupId>com.github.javaparser</groupId>
- <artifactId>javaparser-symbol-solver-core</artifactId>
- </dependency>
- <dependency>
- <groupId>software.amazon.awssdk</groupId>
- <artifactId>s3</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource> <!-- Include raw java files so that the generator can use them as a template -->
- <directory>src/main/java</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.7</version>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|