-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
219 lines (191 loc) · 6.06 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?xml version="1.0"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.mjsip</groupId>
<artifactId>mjsip-parent</artifactId>
<version>1.9.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>mjSIP</name>
<url>http://www.mjsip.org</url>
<description>
A complete java-based implementation of a SIP stack.
SIP (Session Initiation Protocol) is the IETF (Internet Engineering Task Force) signaling standard for managing
multimedia session initiation; it is currently defined in RFC 3261. SIP can be used to initiate voice, video and
multimedia sessions, for both interactive applications (e.g. an IP phone call or a video conference) and not
interactive ones (e.g. a Video Streaming), and it is the more promising candidate as call setup signaling for
the present day and future IP based telephony services. SIP has been also proposed for session initiation
related uses, such as for messaging, gaming, etc.
The mjSIP stack has been used in research activities by Dept. of Engineering and Architecture at University of
Parma and by DIE - University of Roma "Tor Vergata" and several commercial products.
</description>
<contributors>
<contributor>
<name>Luca Veltri</name>
<email>[email protected]</email>
<organization>University of Parma - Italy</organization>
<organizationUrl>http://www.unipr.it/</organizationUrl>
</contributor>
</contributors>
<licenses>
<license>
<name>GNU General Public License v2.0 only</name>
<url>https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/haumacher/mjSIP.git</connection>
<developerConnection>scm:git:https://github.com/haumacher/mjSIP.git</developerConnection>
<url>https://github.com/haumacher/mjSIP</url>
<tag>1.9.0</tag>
</scm>
<distributionManagement>
<repository>
<id>tl-ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</distributionManagement>
<modules>
<module>mjsip-util</module>
<module>mjsip-net</module>
<module>mjsip-sound</module>
<module>mjsip-sip</module>
<module>mjsip-server</module>
<module>mjsip-ua</module>
<module>mjsip-phone</module>
<module>mjsip-examples</module>
</modules>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>org.tinylog</groupId>
<artifactId>slf4j-tinylog</artifactId>
<version>2.6.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.tinylog</groupId>
<artifactId>tinylog-impl</artifactId>
<version>2.6.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.mjsip</groupId>
<artifactId>mjsip-sip</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mjsip</groupId>
<artifactId>mjsip-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mjsip</groupId>
<artifactId>mjsip-ua</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>..</directory>
<filtering>false</filtering>
<includes>
<include>COPYRIGHT.txt</include>
<include>LICENSE.txt</include>
</includes>
<targetPath>META-INF</targetPath>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>