Skip to content

Commit 5a55208

Browse files
author
Ben Pedrick
committed
Setup unit tests
Unit tests may now be run using "mvn test"
1 parent b85060b commit 5a55208

File tree

3 files changed

+508
-725
lines changed

3 files changed

+508
-725
lines changed

pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.opentok.api</groupId>
55
<artifactId>opentok-java-sdk</artifactId>
6-
<version>0.91.54-SNAPSHOT</version>
6+
<version>0.91.54</version>
77
<packaging>jar</packaging>
88
<name>Opentok Java SDK</name>
99
<description>The Java library to interact with the Opentok platform</description>
@@ -42,10 +42,15 @@
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-surefire-plugin</artifactId>
4444
<version>2.12</version>
45-
<configuration>
46-
<skipTests>true</skipTests>
47-
</configuration>
4845
</plugin>
4946
</plugins>
5047
</build>
48+
<dependencies>
49+
<dependency>
50+
<groupId>junit</groupId>
51+
<artifactId>junit</artifactId>
52+
<version>4.8.1</version>
53+
<scope>test</scope>
54+
</dependency>
55+
</dependencies>
5156
</project>

0 commit comments

Comments
 (0)