Skip to content

Commit

Permalink
Update git repo URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Tianscar committed May 9, 2023
1 parent 6fc6329 commit c33fb26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ publishing {
pom {
name = libraryName
description = 'Java implementation of Apple Lossless decoder supports both 16-bit and 24-bit Apple Lossless files'
url = 'https://github.com/Tianscar/jald'
url = 'https://github.com/Tianscar/jaldec'
licenses {
license {
name = 'New BSD (3-clause) License'
Expand All @@ -66,9 +66,9 @@ publishing {
}
}
scm {
connection = 'scm:git:git@github.com/Tianscar/jald.git'
developerConnection = 'scm:git:git@github.com/Tianscar/jald.git'
url = 'https://github.com/Tianscar/jald'
connection = 'scm:git:git@github.com/Tianscar/jaldec.git'
developerConnection = 'scm:git:git@github.com/Tianscar/jaldec.git'
url = 'https://github.com/Tianscar/jaldec'
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void playMP4Resource() throws UnsupportedAudioFileException, IOException,
@Test
@DisplayName("play MP4 from URL via SPI")
public void playMP4URL() throws UnsupportedAudioFileException, IOException, LineUnavailableException {
URL url = new URL("https://github.com/Tianscar/jald/raw/main/src/test/resources/fbodemo1.m4a");
URL url = new URL("https://github.com/Tianscar/jaldec/raw/main/src/test/resources/fbodemo1.m4a");
AudioInputStream mp4Ais = AudioSystem.getAudioInputStream(url);
play(mp4Ais);
mp4Ais.close();
Expand Down

0 comments on commit c33fb26

Please sign in to comment.