diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2020-04-15 09:24:34 +0100 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2020-04-15 09:24:34 +0100 |
| commit | 1912d6a39306f7138ad30941fd62cc7ae19b08ed (patch) | |
| tree | 03b435752c9f13a5f851e59657367e402cbb2721 /pom.xml | |
| parent | 6001a91e7bf069b69606d64b8456fac267c769aa (diff) | |
Task types will now try to load QPlayer if it would otherwise return null.
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -6,12 +6,13 @@ <groupId>com.leonardobishop</groupId> <artifactId>quests</artifactId> - <version>2.8</version> + <version>2.9</version> <name>Quests</name> <properties> <release.version>${project.version}</release.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <maven.jar.outputDirectory>target</maven.jar.outputDirectory> </properties> <repositories> @@ -181,6 +182,15 @@ </execution> </executions> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.2.0</version> + <configuration> + <outputDirectory>${maven.jar.outputDirectory}</outputDirectory> + </configuration> + </plugin> </plugins> </build> |
