Skip to content

Commit

Permalink
script & version number cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
eostermueller committed Dec 10, 2016
1 parent bd00920 commit e642363
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 21 deletions.
3 changes: 2 additions & 1 deletion bin/gs-util.sh → bin/garbageSpank-util.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
dir=$(dirname "$0")


export GS=$dir/../target/heapSpank-0.3.jar:$dir/heapSpank-0.3.jar
#One location for a dev environment, one location for binary packaging
export GS=$dir/../target/heapSpank-0.6.jar:$dir/heapSpank-0.6.jar

export PID_TO_MONITOR=$1
export INTERVAL=1s
Expand Down
9 changes: 0 additions & 9 deletions bin/gs-new.sh

This file was deleted.

10 changes: 0 additions & 10 deletions bin/gs-old.sh

This file was deleted.

23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,34 @@
<groupId>com.github.eostermueller.heapspank</groupId>
<artifactId>heapSpank</artifactId>
<packaging>jar</packaging>
<version>0.5</version>
<version>0.6</version>
<name>heapSpank</name>
<url>http://maven.apache.org</url>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.1.3.RELEASE</version>
<configuration>
<mainClass>com.github.eostermueller.heapspank.leakyspank.console.LeakySpankConsole</mainClass>
<layout>ZIP</layout>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
Expand Down

0 comments on commit e642363

Please sign in to comment.