-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
87 lines (74 loc) · 2.73 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
<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>tigase</groupId>
<artifactId>tigase-projects-parent</artifactId>
<version>1.0.5</version>
<relativePath />
</parent>
<properties>
<bundle-activator>tigase.socks5.Activator</bundle-activator>
<license.inlineHeader>${inlineHeader_agpl3}</license.inlineHeader>
<guide_name>Tigase_Socks5</guide_name>
<documentation_phases.all_converters>generate-resources</documentation_phases.all_converters>
</properties>
<artifactId>tigase-socks5</artifactId>
<version>2.1.0-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>Tigase Socks5 Component</name>
<description>SOCKS5 proxy component for Tigase</description>
<inceptionYear>2011</inceptionYear>
<developers>
<developer>
<id>andrzej.wojcik</id>
<name>Andrzej Wojcik</name>
<email>andrzej.wojcik@tigase.org</email>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:${scm_repo_base}/tigase-socks5.git</connection>
<developerConnection>scm:git:${scm_repo_base}/tigase-socks5.git</developerConnection>
<url>https://github.com/tigase/tigase-socks5</url>
<tag>HEAD</tag>
</scm>
<organization>
<name>Tigase</name>
<url>http://www.tigase.org</url>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>generate-resources</phase>
<configuration>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>tigase</groupId>
<artifactId>tigase-server</artifactId>
<version>8.1.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>tigase</id>
<url>https://maven-repo.tigase.org/repository/tigase</url>
</repository>
</repositories>
</project>