diff options
| author | Pinapelz <yukais@pinapelz.moe> | 2023-11-22 23:19:48 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-22 23:19:48 -0800 |
| commit | 60a320dc9e680868608efbd2e46ae0910b8ba5f2 (patch) | |
| tree | 6e273ae7dbf6c6f91e1af17cf9fd1331d5666836 /pom.xml | |
| parent | 499fe2a90287c5a84a4b32ebc43fc7a609e8871c (diff) | |
Added a Procfile
- change settings config to env vars
- allows for easier Heroku deployment
Signed-off-by: Pinapelz <yukais@pinapelz.com>
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 28 |
1 files changed, 3 insertions, 25 deletions
@@ -68,39 +68,17 @@ <defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <version>3.3.0</version>
- </plugin>
- <plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
+ <artifactId>maven-dependency-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
+ <id>copy-dependencies</id>
<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>
+ <goals><goal>copy-dependencies</goal></goals>
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>10</source>
- <target>10</target>
- </configuration>
- </plugin>
</plugins>
<resources>
<resource>
|
