Skip to content

Commit 1c8c907

Browse files
author
Ben Pedrick
committed
Changes for maven
1 parent 8071ed0 commit 1c8c907

File tree

15 files changed

+57
-2
lines changed

15 files changed

+57
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.class
2+
target

build.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

pom.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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
5+
http://maven.apache.org/maven-v4_0_0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
<groupId>com.opentok.api</groupId>
8+
<artifactId>opentok-java-sdk</artifactId>
9+
<version>0.91.53</version>
10+
<packaging>jar</packaging>
11+
<name>Opentok Java SDK</name>
12+
<description>The Java library to interact with the Opentok platform</description>
13+
<url>http://www.tokbox.com/opentok/api</url>
14+
<licenses>
15+
<license>
16+
<name>The MIT License</name>
17+
<url>http://www.opensource.org/licenses/MIT</url>
18+
</license>
19+
<license>
20+
<name>GNU General Public License, version 2</name>
21+
<url>http://www.gnu.org/licenses/gpl-2.0.html</url>
22+
</license>
23+
</licenses>
24+
<scm>
25+
<connection>scm:git://github.com/opentok/Opentok-Java-SDK.git</connection>
26+
<developerConnection>scm:git://github.com/opentok/Opentok-Java-SDK.git</developerConnection>
27+
<url>https://github.com/opentok/Opentok-Java-SDK</url>
28+
</scm>
29+
<developers>
30+
<developer>
31+
<id>ben</id>
32+
<name>Ben Pedrick</name>
33+
<email>contact@tokbox.com</email>
34+
<organization>Tokbox, Inc.</organization>
35+
</developer>
36+
</developers>
37+
<parent>
38+
<groupId>org.sonatype.oss</groupId>
39+
<artifactId>oss-parent</artifactId>
40+
<version>7</version>
41+
</parent>
42+
<build>
43+
<plugins>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-surefire-plugin</artifactId>
47+
<version>2.12</version>
48+
<configuration>
49+
<skipTests>true</skipTests>
50+
</configuration>
51+
</plugin>
52+
</plugins>
53+
</build>
54+
</project>

0 commit comments

Comments
 (0)