Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Fix Maven build-time warnings #29

Merged
merged 2 commits into from
Feb 4, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ Licensed under the MIT license. See License.txt in the project root. -->
<configuration>
<!-- http://stackoverflow.com/a/9339405 -->
<properties>
<shaded_jar_checksum_file>${artifactId}-${version}.jar.sha256</shaded_jar_checksum_file>
<shaded_jar_checksum_file>${project.artifactId}-${project.version}.jar.sha256</shaded_jar_checksum_file>
</properties>
<scripts>
<script><![CDATA[
Expand All @@ -303,6 +303,13 @@ Licensed under the MIT license. See License.txt in the project root. -->
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-ant</artifactId>
<version>2.4.5</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.ruleoftech</groupId>
Expand Down Expand Up @@ -521,7 +528,7 @@ Licensed under the MIT license. See License.txt in the project root. -->
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<artifactId>groovy</artifactId>
<version>2.4.5</version>
<scope>test</scope>
</dependency>
Expand Down