Skip to content

Commit 17b8e28

Browse files
author
jean.deruelle@gmail.com
committedSep 8, 2011
Update Issue 1887
Updating poms git-svn-id: https://mobicents.googlecode.com/svn/trunk/servers/sip-servlets@20216 bf0df8d0-2c1f-0410-b170-bd30377b63dc
1 parent a301a7d commit 17b8e28

File tree

5 files changed

+55
-4
lines changed

5 files changed

+55
-4
lines changed
 

‎sip-servlets-catalina/pom.xml

+39-1
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,35 @@
1111
<name>Mobicents Sip Servlets Catalina Abstract Layer</name>
1212
<url>http://www.mobicents.org/products_sip_servlets.html</url>
1313
<dependencies>
14-
<!-- sip servlet spec dependency -->
14+
<!-- sip servlets dependency -->
1515
<dependency>
1616
<groupId>org.mobicents.servlet.sip</groupId>
1717
<artifactId>sip-servlets-spec</artifactId>
1818
<version>1.7.0-SNAPSHOT</version>
1919
</dependency>
20+
<dependency>
21+
<groupId>org.mobicents.servlet.sip</groupId>
22+
<artifactId>sip-servlets-impl</artifactId>
23+
<version>1.7.0-SNAPSHOT</version>
24+
</dependency>
2025
<dependency>
2126
<groupId>org.mobicents.servlet.sip</groupId>
2227
<artifactId>sip-servlets-core-api</artifactId>
2328
<version>1.7.0-SNAPSHOT</version>
2429
</dependency>
30+
<dependency>
31+
<groupId>javax.sip</groupId>
32+
<artifactId>jain-sip-api</artifactId>
33+
<version>${jain-sip-api.version}</version>
34+
<scope>provided</scope>
35+
</dependency>
36+
37+
<dependency>
38+
<groupId>javax.sip</groupId>
39+
<artifactId>jain-sip-ri</artifactId>
40+
<version>${jain-sip-ri.version}</version>
41+
<scope>provided</scope>
42+
</dependency>
2543
<!-- logging dependency -->
2644
<dependency>
2745
<groupId>log4j</groupId>
@@ -44,6 +62,26 @@
4462
<version>${tomcat.version}</version>
4563
<scope>provided</scope>
4664
</dependency>
65+
<!-- mobicents sip stack extensions deps -->
66+
<dependency>
67+
<groupId>org.mobicents.ha.javax.sip</groupId>
68+
<artifactId>mobicents-jain-sip-ha-core</artifactId>
69+
<version>${mobicents.jain.sip.ha.version}</version>
70+
<scope>provided</scope>
71+
</dependency>
72+
73+
<dependency>
74+
<groupId>org.mobicents.javax.sip</groupId>
75+
<artifactId>mobicents-jain-sip-ext</artifactId>
76+
<version>${mobicents.jain.sip.ext.version}</version>
77+
<scope>provided</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>net.java.stun4j</groupId>
81+
<artifactId>stun4j</artifactId>
82+
<version>1.0.MOBICENTS</version>
83+
<scope>provided</scope>
84+
</dependency>
4785
</dependencies>
4886
<build>
4987
<plugins>

‎sip-servlets-catalina/src/main/java/org/mobicents/servlet/sip/catalina/CatalinaSipContext.java

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
package org.mobicents.servlet.sip.catalina;
2424

2525
import org.apache.AnnotationProcessor;
26-
import org.apache.catalina.Container;
2726
import org.apache.catalina.Context;
2827
import org.mobicents.servlet.sip.core.SipContext;
2928

‎sip-servlets-jboss5/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@
5050
<version>1.7.0-SNAPSHOT</version>
5151
<scope>provided</scope>
5252
</dependency>
53+
54+
<dependency>
55+
<groupId>org.mobicents.servlet.sip</groupId>
56+
<artifactId>sip-servlets-catalina</artifactId>
57+
<version>1.7.0-SNAPSHOT</version>
58+
<scope>provided</scope>
59+
</dependency>
5360

5461
<dependency>
5562
<groupId>org.mobicents.servlet.sip</groupId>

‎sip-servlets-test-suite/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<classpathentry kind="var" path="M2_REPO/cglib/cglib-nodep/2.2/cglib-nodep-2.2.jar"/>
6868
<classpathentry combineaccessrules="false" kind="src" path="/jain-sip"/>
6969
<classpathentry combineaccessrules="false" kind="src" path="/jain-sip-ext"/>
70-
<classpathentry combineaccessrules="false" kind="src" path="/sip-servlets-catalina"/>
7170
<classpathentry combineaccessrules="false" kind="src" path="/sip-servlets-core-api"/>
71+
<classpathentry combineaccessrules="false" kind="src" path="/sip-servlets-catalina"/>
7272
<classpathentry kind="output" path="testsuite/target/test-classes"/>
7373
</classpath>

‎sip-servlets-tomcat-jboss4/pom.xml

+8-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@
4040
<version>1.7.0-SNAPSHOT</version>
4141
<scope>provided</scope>
4242
</dependency>
43-
43+
44+
<dependency>
45+
<groupId>org.mobicents.servlet.sip</groupId>
46+
<artifactId>sip-servlets-catalina</artifactId>
47+
<version>1.7.0-SNAPSHOT</version>
48+
<scope>provided</scope>
49+
</dependency>
50+
4451
<dependency>
4552
<groupId>org.mobicents.servlet.sip</groupId>
4653
<artifactId>sip-servlets-annotations</artifactId>

0 commit comments

Comments
 (0)
Please sign in to comment.