Null out sourceDataLine if the line could not be opened.
[sonitus.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4                  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5         <modelVersion>4.0.0</modelVersion>
6
7         <groupId>net.pterodactylus</groupId>
8         <artifactId>sonitus</artifactId>
9         <version>0.1-SNAPSHOT</version>
10
11         <dependencies>
12                 <dependency>
13                         <groupId>com.google.guava</groupId>
14                         <artifactId>guava</artifactId>
15                         <version>14.0-rc1</version>
16                 </dependency>
17                 <dependency>
18                         <groupId>com.google.inject</groupId>
19                         <artifactId>guice</artifactId>
20                         <version>3.0</version>
21                 </dependency>
22                 <dependency>
23                         <groupId>org.jcraft</groupId>
24                         <artifactId>jorbis</artifactId>
25                         <version>0.0.17</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>org.blinkenlights.jid3</groupId>
29                         <artifactId>JID3</artifactId>
30                         <version>0.46</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>org.testng</groupId>
34                         <artifactId>testng</artifactId>
35                         <version>6.8</version>
36                         <scope>test</scope>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.mockito</groupId>
40                         <artifactId>mockito-core</artifactId>
41                         <version>1.9.5</version>
42                         <scope>test</scope>
43                 </dependency>
44
45         </dependencies>
46
47         <properties>
48                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49         </properties>
50
51         <build>
52                 <plugins>
53                         <plugin>
54                                 <groupId>org.apache.maven.plugins</groupId>
55                                 <artifactId>maven-compiler-plugin</artifactId>
56                                 <version>2.0.2</version>
57                                 <configuration>
58                                         <source>1.6</source>
59                                         <target>1.6</target>
60                                 </configuration>
61                         </plugin>
62                 </plugins>
63         </build>
64
65 </project>