2019-02-12 07:05:41 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-24 11:42:39 -04:00
|
|
|
<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">
|
2019-02-12 07:05:41 -05:00
|
|
|
<parent>
|
|
|
|
<artifactId>jetty-unixsocket</artifactId>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2019-07-11 03:20:27 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2019-02-12 07:05:41 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-unixsocket-server</artifactId>
|
|
|
|
<name>Jetty :: UnixSocket :: Server</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.unixsocket.server</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-unixsocket-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
</dependency>
|
2019-02-12 07:05:41 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|