Skip to content

Commit

Permalink
Merge pull request #11 from umjammer/1.9.13
Browse files Browse the repository at this point in the history
1.9.13
  • Loading branch information
umjammer authored Oct 15, 2022
2 parents bedef31 + a9e7ee1 commit 8409683
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[![Maven Package](https://github.com/umjammer/mp3spi/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/umjammer/mp3spi/actions/workflows/maven-publish.yml)
[![Java CI](https://github.com/umjammer/mp3spi/workflows/Java%20CI%20with%20Maven/badge.svg)](https://github.com/umjammer/mp3spi/actions)
[![Parent](https://img.shields.io/badge/Parent-vavi--sound--sandbox-pink)](https://github.com/umjammer/vavi-sound-sandbox)
[![CodeQL](https://github.com/umjammer/mp3spi/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/umjammer/mp3spi/actions/workflows/codeql-analysis.yml)
![Java](https://img.shields.io/badge/Java-8-b07219)
[![Parent](https://img.shields.io/badge/Parent-vavi--sound--sandbox-pink)](https://github.com/umjammer/vavi-sound-sandbox)

# MP3SPI

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>net.javazoom</groupId>
<artifactId>mp3spi</artifactId>
<version>1.9.12</version>
<version>1.9.13</version>

<properties>
<tritonus.version>0.3.11</tritonus.version>
Expand Down Expand Up @@ -37,7 +37,6 @@
<argLine>
-Djava.util.logging.config.file=${project.build.testOutputDirectory}/logging.properties
-Dvavi.util.logging.VaviFormatter.extraClassMethod=org.tritonus.share.TDebug#out
-Dvavi.test=true
</argLine>
<trimStackTrace>false</trimStackTrace>
</configuration>
Expand All @@ -61,7 +60,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.8.2</version>
<version>5.9.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -80,9 +79,10 @@
<version>${tritonus.version}</version>
</dependency>
<dependency>
<!-- net.javazoom:jlayer -->
<groupId>com.github.umjammer</groupId>
<artifactId>jlayer</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/Test3.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static void main(String[] args) throws Exception {

@BeforeEach
void setup() {
time = Boolean.parseBoolean(System.getProperty("vavi.test")) ? 3 * 1000 : 600 * 1000;
time = System.getProperty("vavi.test", "").equals("ide") ? 600 * 1000 : 3 * 1000;
Debug.println("time: " + time);
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/javazoom/spi/mpeg/sampled/file/MonoTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class MonoTest {

@BeforeAll
static void setup() {
frames = Boolean.valueOf(System.getProperty("vavi.test")) ? 2 : 1000;
frames = System.getProperty("vavi.test", "").equals("ide") ? 1000 : 2;
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected void setUp() throws Exception {
name = props.getProperty("filename");
filename = basefile + name;
out = Logger.getLogger(PlayerTest.class.getName());
time = Boolean.parseBoolean(System.getProperty("vavi.test")) ? 3 * 1000 : 3000 * 1000;
time = System.getProperty("vavi.test", "").equals("ide") ? 3000 * 1000 : 3 * 1000;
}

@Test
Expand Down

0 comments on commit 8409683

Please sign in to comment.