forked from RestComm/ussdgateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing of RestComm#65 - git warning with
CRLF will be replaced by LF
- Loading branch information
Showing
17 changed files
with
1,434 additions
and
1,434 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,111 +1,111 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<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"> | ||
|
||
<!-- Model Version --> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.mobicents.ussd</groupId> | ||
<artifactId>core</artifactId> | ||
<version>7.1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<packaging>jar</packaging> | ||
|
||
|
||
<artifactId>domain</artifactId> | ||
<name>Core : Domain</name> | ||
<description>USSD Gateway Domain Object</description> | ||
|
||
<dependencies> | ||
<!-- SS7 Shell --> | ||
<dependency> | ||
<artifactId>shell-server-api</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.management</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
<dependency> | ||
<artifactId>jmxss7</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.oam.common</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>statistics-api</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.statistics</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
<dependency> | ||
<artifactId>statistics-impl</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.statistics</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.mobicents.protocols.ss7.map</groupId> | ||
<artifactId>map-impl</artifactId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
|
||
<!-- javolution --> | ||
<dependency> | ||
<groupId>javolution</groupId> | ||
<artifactId>javolution</artifactId> | ||
<version>${javolution.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>${log4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<!-- This comes in container. --> | ||
<groupId>org.jboss.jbossas</groupId> | ||
<artifactId>jboss-as-system-jmx</artifactId> | ||
<version>${jboss.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
<version>${testng.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.restcomm.commons</groupId> | ||
<artifactId>restcomm-statistics</artifactId> | ||
<version>${restcomm.commons.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.dropwizard.metrics</groupId> | ||
<artifactId>metrics-core</artifactId> | ||
<version>${metrics.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<addMavenDescriptor>false</addMavenDescriptor> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
|
||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
|
||
</project> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<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"> | ||
|
||
<!-- Model Version --> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.mobicents.ussd</groupId> | ||
<artifactId>core</artifactId> | ||
<version>7.1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<packaging>jar</packaging> | ||
|
||
|
||
<artifactId>domain</artifactId> | ||
<name>Core : Domain</name> | ||
<description>USSD Gateway Domain Object</description> | ||
|
||
<dependencies> | ||
<!-- SS7 Shell --> | ||
<dependency> | ||
<artifactId>shell-server-api</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.management</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
<dependency> | ||
<artifactId>jmxss7</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.oam.common</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<artifactId>statistics-api</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.statistics</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
<dependency> | ||
<artifactId>statistics-impl</artifactId> | ||
<groupId>org.mobicents.protocols.ss7.statistics</groupId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.mobicents.protocols.ss7.map</groupId> | ||
<artifactId>map-impl</artifactId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
|
||
<!-- javolution --> | ||
<dependency> | ||
<groupId>javolution</groupId> | ||
<artifactId>javolution</artifactId> | ||
<version>${javolution.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>${log4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<!-- This comes in container. --> | ||
<groupId>org.jboss.jbossas</groupId> | ||
<artifactId>jboss-as-system-jmx</artifactId> | ||
<version>${jboss.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
<version>${testng.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.restcomm.commons</groupId> | ||
<artifactId>restcomm-statistics</artifactId> | ||
<version>${restcomm.commons.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.dropwizard.metrics</groupId> | ||
<artifactId>metrics-core</artifactId> | ||
<version>${metrics.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<addMavenDescriptor>false</addMavenDescriptor> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
|
||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,80 @@ | ||
<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.ussd</groupId> | ||
<artifactId>core</artifactId> | ||
<version>7.1.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>ussd-cli</artifactId> | ||
<name>Core : Operations and Management : CLI</name> | ||
|
||
<dependencies> | ||
<!-- <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> | ||
<version>${log4j.version}</version> </dependency> --> | ||
<!-- MTP3 --> | ||
<dependency> | ||
<groupId>org.mobicents.protocols.ss7.management</groupId> | ||
<artifactId>shell-client</artifactId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<finalName>${project.artifactId}-${project.version}</finalName> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources/archive-files</directory> | ||
<targetPath>META-INF/services</targetPath> | ||
</resource> | ||
<resource> | ||
<directory>src/main/resources/help</directory> | ||
<targetPath>help</targetPath> | ||
</resource> | ||
</resources> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<!-- Adds the files to JBoss AS --> | ||
<id>jboss</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>deploy</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<tasks> | ||
<copy todir="${jboss.home}/lib" file="${project.build.directory}/${project.build.finalName}.jar" /> | ||
</tasks> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>undeploy</id> | ||
<phase>clean</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<tasks> | ||
<delete failonerror="fals" file="${jboss.home}/lib/${project.build.finalName}.jar" /> | ||
</tasks> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> | ||
<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.ussd</groupId> | ||
<artifactId>core</artifactId> | ||
<version>7.1.0-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>ussd-cli</artifactId> | ||
<name>Core : Operations and Management : CLI</name> | ||
|
||
<dependencies> | ||
<!-- <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> | ||
<version>${log4j.version}</version> </dependency> --> | ||
<!-- MTP3 --> | ||
<dependency> | ||
<groupId>org.mobicents.protocols.ss7.management</groupId> | ||
<artifactId>shell-client</artifactId> | ||
<version>${jss7.restcomm.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<finalName>${project.artifactId}-${project.version}</finalName> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources/archive-files</directory> | ||
<targetPath>META-INF/services</targetPath> | ||
</resource> | ||
<resource> | ||
<directory>src/main/resources/help</directory> | ||
<targetPath>help</targetPath> | ||
</resource> | ||
</resources> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<!-- Adds the files to JBoss AS --> | ||
<id>jboss</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>deploy</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<tasks> | ||
<copy todir="${jboss.home}/lib" file="${project.build.directory}/${project.build.finalName}.jar" /> | ||
</tasks> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>undeploy</id> | ||
<phase>clean</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<tasks> | ||
<delete failonerror="fals" file="${jboss.home}/lib/${project.build.finalName}.jar" /> | ||
</tasks> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
Oops, something went wrong.