diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2023-04-07 21:45:53 -0700 |
|---|---|---|
| committer | Pinapelz <donaldshan1@outlook.com> | 2023-04-07 21:45:53 -0700 |
| commit | 50dbab5fe4feaf5356132ff463a71c76e4cc1a3a (patch) | |
| tree | 11d39001b1b99aa706f05973c5b5642946edc71d /pom.xml | |
Initial Commit
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 93 |
1 files changed, 93 insertions, 0 deletions
@@ -0,0 +1,93 @@ +<?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> + + <groupId>com.pina</groupId> + <artifactId>vTuberDiscordBot</artifactId> + <version>0.01</version> + + <properties> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> + </properties> + + <repositories> + <repository> + <id>jcenter</id> + <name>jcenter-bintray</name> + <url>https://jcenter.bintray.com</url> + </repository> + <repository> + <id>jitpack.io</id> + <url>https://jitpack.io</url> + </repository> + <repository> + <id>dv8tion</id> + <name>m2-dv8tion</name> + <url>https://m2.dv8tion.net/releases</url> + </repository> + </repositories> + <dependencies> + <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>net.dv8tion</groupId> + <artifactId>JDA</artifactId> + <version>4.4.0_350</version> + </dependency> + <dependency> + <groupId>org.jsoup</groupId> + <artifactId>jsoup</artifactId> + <version>1.15.3</version> + </dependency> + <dependency> + <groupId>com.github.pinapelz</groupId> + <artifactId>JHolodex</artifactId> + <version>0.05</version> + </dependency> + </dependencies> + + <build> + <defaultGoal>clean package</defaultGoal> + <plugins> + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <version>3.1.2</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>3.1.0</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <transformers> + <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> + <mainClass>Main</mainClass> + </transformer> + </transformers> + <createDependencyReducedPom>false</createDependencyReducedPom> + <shadedArtifactAttached>true</shadedArtifactAttached> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + <resources> + <resource> + <directory>src/main/resources</directory> + <filtering>true</filtering> + </resource> + </resources> + </build> + +</project>
\ No newline at end of file |
