diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-12-26 21:48:57 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-12-26 21:48:57 -0800 |
| commit | a0414925cdf6d57acc8d2f0f0646e495707bd632 (patch) | |
| tree | 9d08efd4d6d0b300b8fda433ddbc1c5025f3b58a /pom.xml | |
initial commit
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 70 |
1 files changed, 70 insertions, 0 deletions
@@ -0,0 +1,70 @@ +<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> + + <groupId>org.example</groupId> + <artifactId>NewDiscordAsStorage</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>NewDiscordAsStorage</name> + <url>http://maven.apache.org</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>net.dv8tion</groupId> + <artifactId>JDA</artifactId> + <version>6.2.0</version> + <!-- Optionally disable audio natives to reduce jar size by excluding `opus-java` and `tink` --> + <exclusions> + <!-- required for encoding audio into opus, not needed if audio is already provided in opus encoding + <exclusion> + <groupId>club.minnced</groupId> + <artifactId>opus-java</artifactId> + </exclusion> --> + <!-- required for encrypting and decrypting audio + <exclusion> + <groupId>com.google.crypto.tink</groupId> + <artifactId>tink</artifactId> + </exclusion> --> + </exclusions> + </dependency> + <dependency> + <groupId>io.github.cdimascio</groupId> + <artifactId>dotenv-java</artifactId> + <version>3.0.0</version> + </dependency> + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + <version>42.7.7</version> + </dependency> + <dependency> + <groupId>com.sparkjava</groupId> + <artifactId>spark-core</artifactId> + <version>2.9.4</version> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>15</source> + <target>15</target> + </configuration> + </plugin> + </plugins> + </build> +</project> |
