You can download sip-servlets-spec-1.7.0.final.jar in this page.
Open Source
sip-servlets-spec-1.7.0.final.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.mobicents.servlet.sip/sip-servlets-spec/pom.properties META-INF/maven/org.mobicents.servlet.sip/sip-servlets-spec/pom.xml javax.servlet.sip.Address.class javax.servlet.sip.AuthInfo.class javax.servlet.sip.B2buaHelper.class javax.servlet.sip.ConvergedHttpSession.class javax.servlet.sip.Parameterable.class javax.servlet.sip.Proxy.class javax.servlet.sip.ProxyBranch.class javax.servlet.sip.Rel100Exception.class javax.servlet.sip.ServletParseException.class javax.servlet.sip.ServletTimer.class javax.servlet.sip.SipApplicationSession.class javax.servlet.sip.SipApplicationSessionActivationListener.class javax.servlet.sip.SipApplicationSessionAttributeListener.class javax.servlet.sip.SipApplicationSessionBindingEvent.class javax.servlet.sip.SipApplicationSessionBindingListener.class javax.servlet.sip.SipApplicationSessionEvent.class javax.servlet.sip.SipApplicationSessionListener.class javax.servlet.sip.SipErrorEvent.class javax.servlet.sip.SipErrorListener.class javax.servlet.sip.SipFactory.class javax.servlet.sip.SipServlet.class javax.servlet.sip.SipServletContextEvent.class javax.servlet.sip.SipServletListener.class javax.servlet.sip.SipServletMessage.class javax.servlet.sip.SipServletRequest.class javax.servlet.sip.SipServletResponse.class javax.servlet.sip.SipSession.class javax.servlet.sip.SipSessionActivationListener.class javax.servlet.sip.SipSessionAttributeListener.class javax.servlet.sip.SipSessionBindingEvent.class javax.servlet.sip.SipSessionBindingListener.class javax.servlet.sip.SipSessionEvent.class javax.servlet.sip.SipSessionListener.class javax.servlet.sip.SipSessionsUtil.class javax.servlet.sip.SipURI.class javax.servlet.sip.TelURL.class javax.servlet.sip.TimerListener.class javax.servlet.sip.TimerService.class javax.servlet.sip.TooManyHopsException.class javax.servlet.sip.UAMode.class javax.servlet.sip.URI.class javax.servlet.sip.annotation.SipApplication.class javax.servlet.sip.annotation.SipApplicationKey.class javax.servlet.sip.annotation.SipListener.class javax.servlet.sip.annotation.SipServlet.class javax.servlet.sip.ar.SipApplicationRouter.class javax.servlet.sip.ar.SipApplicationRouterInfo.class javax.servlet.sip.ar.SipApplicationRoutingDirective.class javax.servlet.sip.ar.SipApplicationRoutingRegion.class javax.servlet.sip.ar.SipApplicationRoutingRegionType.class javax.servlet.sip.ar.SipRouteModifier.class javax.servlet.sip.ar.SipTargetedRequestInfo.class javax.servlet.sip.ar.SipTargetedRequestType.class javax.servlet.sip.ar.spi.SipApplicationRouterProvider.class
sip-servlets-spec-1.7.0.final.pom file content.
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mobicents.servlet.sip</groupId> <artifactId>sip-servlets-bootstrap</artifactId> <version>1.7.0.FINAL</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.mobicents.servlet.sip</groupId> <artifactId>sip-servlets-spec</artifactId> <version>1.7.0.FINAL</version> <packaging>jar</packaging> <name>Sip Servlets Specification Implementation</name> <url>http://www.mobicents.org-a.googlepages.com/products_sip_servlets.html</url> <build> <plugins> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <groupId>org.mobicents.tools</groupId> <version>${mobicents.tools.mavenplugin.eclipse.version}</version> <inherited>false</inherited> <executions /> <configuration> <!--classpathExcludes> </classpathExcludes--> <generateProjectsForModules>true</generateProjectsForModules> <resolveTransitiveDependencies>true</resolveTransitiveDependencies> <eclipseProjectName>sip-servlets-spec</eclipseProjectName> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>tomcat</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> <executions> <execution> <phase>package</phase> <configuration> <tasks> <echo message="${env.CATALINA_HOME}" /> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${env.CATALINA_HOME}/lib" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jboss</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> <executions> <execution> <phase>package</phase> <configuration> <tasks> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${env.JBOSS_HOME}/client/" /> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${env.JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jboss-5</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> <executions> <execution> <phase>package</phase> <configuration> <tasks> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${env.JBOSS_HOME}/client/" /> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${env.JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/" /> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${env.JBOSS_HOME}/server/${node}/deployers/jbossweb.deployer/" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>tomcat-distro</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> <executions> <execution> <phase>package</phase> <configuration> <tasks> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${CATALINA_HOME}/lib" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jboss-distro</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> <executions> <execution> <phase>package</phase> <configuration> <tasks> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${JBOSS_HOME}/client/" /> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jboss-5-distro</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> <executions> <execution> <phase>package</phase> <configuration> <tasks> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${JBOSS_HOME}/client/" /> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/" /> <copy verbose="true" file="${project.build.directory}/${project.build.finalName}.${project.packaging}" todir="${JBOSS_HOME}/server/${node}/deployers/jbossweb.deployer/" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.mobicents.servlet.sip</groupId> <artifactId>sip-servlets-spec</artifactId> <version>1.7.0.final</version> </dependency>
If you think the following sip-servlets-spec-1.7.0.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download sip-servlets-spec-1.7.0.final.jar file