Skip to content

Commit

Permalink
Mavenized the project. Building instruction in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Vaněk committed Mar 28, 2018
1 parent 1036238 commit 918b054
Show file tree
Hide file tree
Showing 151 changed files with 1,009 additions and 29,018 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
##General
AutoStepper is a Java console program designed to automatically create StepMania SM files with these features:

Generate all difficulty levels
Expand All @@ -10,6 +11,15 @@ AutoStepper is a Java console program designed to automatically create StepMania

So, here it is -- AutoStepper by Phr00t's Software (www.phr00t.com). You can get the whole built program under the "dist" folder.

##Building
It can be built (and packaged) simply by running ``mvn clean package``, where clean is optional.
Then jar with dependencies packed will be waiting and you can use that jar right away.

mvn dependency:copy-dependencies -DexcludeClassifiers=test


##Running

It works on a common line with arguments, which are all optional. If you just run the Java program, it will scan & process all mp3s (and wavs) in the current directory, and spit out folders for each song in the same directory (90 seconds worth of steps).

The arguments are:
Expand Down
1 change: 0 additions & 1 deletion lib/export.txt

This file was deleted.

Binary file removed lib/jl1.0.1.jar
Binary file not shown.
Binary file removed lib/jopt-simple-5.0.4.jar
Binary file not shown.
Binary file removed lib/jsminim.jar
Binary file not shown.
Binary file removed lib/jsoup-1.11.2.jar
Binary file not shown.
Binary file removed lib/mp3spi1.9.5.jar
Binary file not shown.
Binary file removed lib/tritonus_aos.jar
Binary file not shown.
Binary file removed lib/tritonus_share.jar
Binary file not shown.
Binary file removed lib/trove-3.0.3.jar
Binary file not shown.
91 changes: 91 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<?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>autostepper</groupId>
<artifactId>autostepper</artifactId>
<version>0.0.1</version>
<properties>
<app.main.class>autostepper.AutoStepper</app.main.class>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

</properties>
<build>
<finalName>AutoStepper</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>${app.main.class}</Main-Class>
</manifestEntries>
</transformer>
</transformers>
<minimizeJar>false</minimizeJar>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/net.sf.jopt-simple/jopt-simple -->
<dependency>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>5.0.4</version>
</dependency>
<!-- https://mvnrepository.com/artifact/ddf.minim/ddf.minim -->
<dependency>
<groupId>ddf.minim</groupId>
<artifactId>ddf.minim</artifactId>
<version>2.2.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.11.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/net.sf.trove4j/trove4j -->
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>clojars.org</id>
<url>https://repo.clojars.org</url>
</repository>
</repositories>
</project>
82 changes: 0 additions & 82 deletions src/ddf/minim/AudioBuffer.java

This file was deleted.

61 changes: 0 additions & 61 deletions src/ddf/minim/AudioEffect.java

This file was deleted.

Loading

0 comments on commit 918b054

Please sign in to comment.