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/maven-v4_0_0.xsd">
|
2015-11-05 19:17:46 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2020-12-02 16:30:13 -05:00
|
|
|
<version>10.0.1-SNAPSHOT</version>
|
2015-11-05 19:17:46 -05:00
|
|
|
</parent>
|
2019-02-12 07:05:41 -05:00
|
|
|
|
2015-11-05 19:17:46 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-unixsocket</artifactId>
|
2019-02-12 07:05:41 -05:00
|
|
|
<packaging>pom</packaging>
|
2015-11-05 19:17:46 -05:00
|
|
|
<name>Jetty :: UnixSocket</name>
|
2020-12-10 21:10:35 -05:00
|
|
|
|
2019-02-12 07:05:41 -05:00
|
|
|
<description>Jetty UnixSocket Parent</description>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>jetty-unixsocket-common</module>
|
|
|
|
<module>jetty-unixsocket-client</module>
|
|
|
|
<module>jetty-unixsocket-server</module>
|
|
|
|
</modules>
|
|
|
|
|
2015-11-05 19:17:46 -05:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.unixsocket</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.unixsocket.*</spotbugs.onlyAnalyze>
|
2015-11-05 19:17:46 -05:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.jnr</groupId>
|
|
|
|
<artifactId>jnr-unixsocket</artifactId>
|
2020-10-08 11:50:16 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.github.jnr</groupId>
|
|
|
|
<artifactId>jnr-a64asm</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-01-13 05:59:47 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
2015-11-05 19:17:46 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-10-08 11:50:16 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>build-deps-file</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>list</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<appendOutput>false</appendOutput>
|
|
|
|
<outputFile>${project.build.directory}/deps.txt</outputFile>
|
|
|
|
<sort>true</sort>
|
|
|
|
<excludeGroupIds>org.eclipse.jetty,javax.servlet</excludeGroupIds>
|
|
|
|
<prependGroupId>true</prependGroupId>
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>process-deps</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-11-03 09:46:27 -05:00
|
|
|
<target>
|
2020-10-08 11:50:16 -04:00
|
|
|
<copy file="${project.build.directory}/deps.txt" tofile="${project.build.directory}/deps-orig.txt" />
|
|
|
|
<!-- regex the deps with classifiers first -->
|
|
|
|
<replaceregexp file="${project.build.directory}/deps.txt" match=" *(.*):(.*):jar:(.*):(.*):.*$" replace="maven://\1/\2/\4/jar/\3|lib/jnr/\2-\4-\3.jar" byline="true" />
|
|
|
|
<!-- regex the normal deps -->
|
|
|
|
<replaceregexp file="${project.build.directory}/deps.txt" match=" *(.*):(.*):jar:(.*):.*$" replace="maven://\1/\2/\3|lib/jnr/\2-\3.jar" byline="true" />
|
|
|
|
<replaceregexp file="${project.build.directory}/deps.txt" match="The following files have been resolved:" replace="[files]" />
|
|
|
|
<concat destfile="${project.build.directory}/unixsocket.mod">
|
|
|
|
<fileset file="src/main/config-template/modules/unixsocket-prefix.mod" />
|
|
|
|
<fileset file="${project.build.directory}/deps.txt" />
|
|
|
|
<fileset file="src/main/config-template/modules/unixsocket-suffix.mod" />
|
|
|
|
</concat>
|
2020-11-03 09:46:27 -05:00
|
|
|
</target>
|
2020-10-08 11:50:16 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/config.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-12-10 21:10:35 -05:00
|
|
|
>>>>>>> jetty-9.4.x
|
2015-11-05 19:17:46 -05:00
|
|
|
</project>
|