Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcsmith-net committed Nov 18, 2014
1 parent 7ef9a23 commit 4f903a0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion audioservers-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jaudiolibs</groupId>
<artifactId>audioservers</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</parent>
<groupId>org.jaudiolibs</groupId>
<artifactId>audioservers-api</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions audioservers-jack/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jaudiolibs</groupId>
<artifactId>audioservers</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</parent>
<groupId>org.jaudiolibs</groupId>
<artifactId>audioservers-jack</artifactId>
Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jnajack</artifactId>
<version>1.1.0</version>
<version>[1.1.0,]</version>
<exclusions>
<exclusion>
<artifactId>jna</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ private void initialise() throws Exception {
jackclient = jack.openClient(clientID.getIdentifier(), options, status);
} catch (JackException ex) {
LOG.log(Level.FINE, "Exception creating JACK client\nStatus set\n{0}", status);
throw ex;
}
LOG.log(Level.FINE, "JACK client created\nStatus set\n{0}", status);
int count = context.getInputChannelCount();
Expand Down
2 changes: 1 addition & 1 deletion audioservers-javasound/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jaudiolibs</groupId>
<artifactId>audioservers</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</parent>
<groupId>org.jaudiolibs</groupId>
<artifactId>audioservers-javasound</artifactId>
Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?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>org.jaudiolibs</groupId>
<artifactId>audioservers</artifactId>
<packaging>pom</packaging>
<name>audioservers</name>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jaudiolibs</groupId>
<artifactId>audioservers</artifactId>
<packaging>pom</packaging>
<name>audioservers</name>
<build>
<plugins>
<plugin>
Expand All @@ -18,9 +18,9 @@
</plugins>
</build>
<modules>
<module>audioservers-api</module>
<module>audioservers-javasound</module>
<module>audioservers-jack</module>
</modules>
<version>1.1.0</version>
<module>audioservers-api</module>
<module>audioservers-javasound</module>
<module>audioservers-jack</module>
</modules>
<version>1.1.1</version>
</project>

0 comments on commit 4f903a0

Please sign in to comment.