diameter-event-charging
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mobicents.servlet.sip.examples</groupId> <artifactId>diameter-event-charging</artifactId> <version>1.7.0.FINAL</version> </dependency>
<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.examples</groupId> <artifactId>sip-servlets-examples-parent</artifactId> <version>1.7.0.FINAL</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>diameter-event-charging</artifactId> <packaging>war</packaging> <name>Diameter Event Charging Sip Servlet Example</name> <dependencies> <dependency> <groupId>org.mobicents.servers.diameter</groupId> <artifactId>jdiameter-api</artifactId> <version>1.5.4.1-build415</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mobicents.servers.diameter</groupId> <artifactId>mobicents-diameter-mux-jar</artifactId> <version>1.3.3.FINAL</version> <scope>provided</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-system</artifactId> <version>${jboss.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-jmx</artifactId> <version>${jboss.version}</version> <scope>provided</scope> </dependency> </dependencies> <url>http://www.mobicents.org/diameter_event_charging.html</url> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> <warSourceDirectory> ${basedir}/src/main/sipapp </warSourceDirectory> </configuration> </plugin> </plugins> </build> <!-- repositories --> <repositories> <repository> <id>jboss-public-repository-group</id> <name>JBoss Public Maven Repository Group</name> <url>https://repository.jboss.org/nexus/content/groups/public/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository> </repositories> </project>