mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-23 16:05:00 +00:00
* Removing Legacy Method Separators * Restyling branch `jetty-9.4.x` * Applying changes highlighted by checkstyle * Applying XML restyling * Fixing XML codestyle for IntelliJ * Fixing XML style mistakes * Revert "Applying XML restyling" * Updating checkstyle for XML codestyle * Reformatting pom.xml files * Fixed empty string from line wraps * Update intellij style to not do expression relative formatting. Reformatted code based on that. * Increasing line split on Eclipse IDE Formatter to 512 * Restoring setting on internal default value. + IntelliJ will not export settings on things that set to their internal default values. We want to keep those values as a hedge against future default value changes in future releases of IntelliJ. * Fixing intellij codestyle * do not allow single line simple methods * misc checkstyle fixes * re-exported with correct name and all values Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com> Signed-off-by: Greg Wilkins <gregw@webtide.com>
41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
|
<artifactId>fcgi-parent</artifactId>
|
|
<version>9.4.20-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>fcgi-client</artifactId>
|
|
<name>Jetty :: FastCGI :: Client</name>
|
|
|
|
<properties>
|
|
<bundle-symbolic-name>${project.groupId}.client</bundle-symbolic-name>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-util</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-io</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-http</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|