-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into update-from-template-merged
- Loading branch information
Showing
26 changed files
with
853 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
custom: | ||
- https://incompetech.com/donate.html | ||
- https://xiph.org/donate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Run Maven Demo" type="MavenRunConfiguration" factoryName="Maven"> | ||
<MavenSettings> | ||
<option name="myGeneralSettings" /> | ||
<option name="myRunnerSettings" /> | ||
<option name="myRunnerParameters"> | ||
<MavenRunnerParameters> | ||
<option name="cmdOptions" /> | ||
<option name="profiles"> | ||
<set /> | ||
</option> | ||
<option name="goals"> | ||
<list> | ||
<option value="install" /> | ||
</list> | ||
</option> | ||
<option name="multimoduleDir" /> | ||
<option name="pomFileName" /> | ||
<option name="profilesMap"> | ||
<map /> | ||
</option> | ||
<option name="projectsCmdOptionValues"> | ||
<list /> | ||
</option> | ||
<option name="resolveToWorkspace" value="false" /> | ||
<option name="workingDirPath" value="$PROJECT_DIR$" /> | ||
</MavenRunnerParameters> | ||
</option> | ||
</MavenSettings> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# 1.0.1 | ||
* Updated dependencies | ||
|
||
# 1.0.0 | ||
_Initial release_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
<?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> | ||
|
||
<parent> | ||
<groupId>software.xdev</groupId> | ||
<artifactId>music-maven-plugin-root</artifactId> | ||
<version>1.0.2-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>music-maven-plugin-demo</artifactId> | ||
<version>1.0.2-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<organization> | ||
<name>XDEV Software</name> | ||
<url>https://xdev.software</url> | ||
</organization> | ||
|
||
<properties> | ||
<javaVersion>17</javaVersion> | ||
<maven.compiler.release>${javaVersion}</maven.compiler.release> | ||
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
|
||
<mainClass>software.xdev.Application</mainClass> | ||
</properties> | ||
|
||
<build> | ||
<finalName>${project.artifactId}</finalName> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>software.xdev</groupId> | ||
<artifactId>music-maven-plugin</artifactId> | ||
<version>${project.version}</version> | ||
<executions> | ||
<execution> | ||
<id>1-elevator</id> | ||
<phase>validate</phase> | ||
<goals> | ||
<goal>music</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>2-shuffle</id> | ||
<phase>prepare-package</phase> | ||
<goals> | ||
<goal>music</goal> | ||
</goals> | ||
<configuration> | ||
<sources> | ||
<musicSource> | ||
<uri>https://incompetech.com/music/royalty-free/mp3-royaltyfree/Corncob.mp3</uri> | ||
</musicSource> | ||
<musicSource> | ||
<classpath>/default/Andrew_Codeman_-_03_-_Mussels_short_version.ogg</classpath> | ||
</musicSource> | ||
</sources> | ||
<shuffle>true</shuffle> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>3-finished</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>music</goal> | ||
</goals> | ||
<configuration> | ||
<sources> | ||
<musicSource> | ||
<classpath>/default/First_Call.ogg</classpath> | ||
<volumeDB>-15</volumeDB> | ||
</musicSource> | ||
</sources> | ||
<!-- blocking --> | ||
<background>false</background> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
<version>3.5.0</version> | ||
<executions> | ||
<execution> | ||
<id>1</id> | ||
<phase>process-classes</phase> | ||
<goals> | ||
<goal>java</goal> | ||
</goals> | ||
<configuration> | ||
<arguments> | ||
<argument>5000</argument> | ||
</arguments> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>2</id> | ||
<phase>prepare-package</phase> | ||
<goals> | ||
<goal>java</goal> | ||
</goals> | ||
<configuration> | ||
<arguments> | ||
<argument>5000</argument> | ||
</arguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<mainClass>${mainClass}</mainClass> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.13.0</version> | ||
<configuration> | ||
<release>${maven.compiler.release}</release> | ||
<compilerArgs> | ||
<arg>-proc:none</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
16 changes: 16 additions & 0 deletions
16
music-maven-plugin-demo/src/main/java/software/xdev/Application.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package software.xdev; | ||
|
||
public final class Application | ||
{ | ||
public static void main(final String[] args) throws InterruptedException | ||
{ | ||
if(args.length > 0) | ||
{ | ||
Thread.sleep(Integer.parseInt(args[0])); | ||
} | ||
} | ||
|
||
private Application() | ||
{ | ||
} | ||
} |
Oops, something went wrong.