You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.3 KiB
103 lines
3.3 KiB
14 hours ago
|
<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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>com.zhukovasky</groupId>
|
||
|
<artifactId>dashboard-statistics-lambda</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<name>dashboard-statistics-lambda Maven Webapp</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-lambda -->
|
||
|
<!-- AWS Lambda Core -->
|
||
|
<dependency>
|
||
|
<groupId>com.amazonaws</groupId>
|
||
|
<artifactId>aws-lambda-java-core</artifactId>
|
||
|
<version>1.4.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- AWS SDK for S3 -->
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.awssdk</groupId>
|
||
|
<artifactId>s3</artifactId>
|
||
|
<version>2.35.4</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- MySQL JDBC -->
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>8.0.33</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- CSV 操作 -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-csv</artifactId>
|
||
|
<version>1.14.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/software.amazon.awssdk/url-connection-client -->
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.awssdk</groupId>
|
||
|
<artifactId>url-connection-client</artifactId>
|
||
|
<version>2.34.9</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 日志 -->
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
<version>1.7.36</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
<version>1.2.12</version>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<finalName>dashboard-statistics-lambda</finalName>
|
||
|
<plugins>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>copy-dependencies</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
||
|
<overWriteReleases>false</overWriteReleases>
|
||
|
<overWriteSnapshots>true</overWriteSnapshots>
|
||
|
<excludeTransitive>false</excludeTransitive>
|
||
|
<includeScope>compile</includeScope>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>17</source>
|
||
|
<target>17</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|