forked from kohlschutter/junixsocket
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
108 lines (103 loc) · 3.48 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>no.fiken.oss.junixsocket</groupId>
<artifactId>junixsocket-parent</artifactId>
<version>1.0.3-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>com.kohlschutter</groupId>
<artifactId>kohlschutter-parent</artifactId>
<version>1.1</version>
</parent>
<name>junixsocket-parent</name>
<inceptionYear>2009</inceptionYear>
<description>junixsocket is a Java/JNI library that allows the use of Unix Domain Sockets (AF_UNIX sockets) from Java.
In contrast to other implementations, junixsocket extends the Java Sockets API (java.net.Socket, java.net.SocketAddress etc.) and even supports RMI over AF_UNIX. It is also possible to use it in conjunction with Connector/J to connect to a local MySQL server via Unix domain sockets.</description>
<url>https://github.com/kohlschutter/junixsocket</url>
<organization>
<name>Kohlschütter Search Intelligence</name>
<url>https://www.kohlschutter.com/</url>
</organization>
<developers>
<developer>
<name>Christian Kohlschütter</name>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/kohlschutter/junixsocket</url>
<developerConnection>scm:git:https://github.com/kohlschutter/junixsocket</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/kohlschutter/junixsocket/issues</url>
</issueManagement>
<properties>
<kohlschutter.project.base.directory>${project.basedir}</kohlschutter.project.base.directory>
</properties>
<modules>
<module>junixsocket-common</module>
<module>junixsocket-rmi</module>
<module>junixsocket-mysql</module>
<module>junixsocket-demo</module>
</modules>
<profiles>
<profile>
<id>with-native</id>
<modules>
<module>junixsocket-native</module>
<module>junixsocket-native-common</module>
</modules>
</profile>
<profile>
<id>release-native</id>
<modules>
<module>junixsocket-native-common</module>
</modules>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>checkstyle</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</reporting>
</project>