jetty-webapp-logging-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp-logging-parent</artifactId> <version>9.4.27</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp-logging-parent</artifactId> <version>9.4.27</version> <name>Jetty :: Parent :: Centralized WebApp Logging</name> <packaging>pom</packaging> <description>Jetty :: Centralized WebApp Logging</description> <url>http://www.eclipse.org/jetty/</url> <inceptionYear>1995</inceptionYear> <organization> <name>Mort Bay Consulting</name> <url>http://www.mortbay.com</url> </organization> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jetty.version>9.4.27.v20200227</jetty.version> <slf4j.version>1.7.25</slf4j.version> <logback.version>1.2.3</logback.version> </properties> <licenses> <license> <name>Apache License Version 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> <license> <name>Eclipse Public License</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/jetty-project/jetty-webapp-logging.git</connection> <developerConnection>scm:git:git@github.com:jetty-project/jetty-webapp-logging.git</developerConnection> <url>https://github.com/jetty-project/jetty-webapp-logging</url> <tag>jetty-webapp-logging-parent-9.4.27</tag> </scm> <issueManagement> <system>github</system> <url>https://github.com/jetty-project/jetty-webapp-logging/issues</url> </issueManagement> <modules> <module>jetty-home-tester</module> <module>jetty-webapp-logging</module> <module>jetty-webapp-logging-tests</module> </modules> <developers> <developer> <id>joakime</id> <name>Joakim Erdfelt</name> <email>joakim.erdfelt@gmail.com</email> <organization>Webtide, LLC</organization> <organizationUrl>https://webtide.com</organizationUrl> <timezone>-7</timezone> </developer> </developers> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.2</version> <configuration> <source>1.8</source> <target>1.8</target> <verbose>false</verbose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M3</version> <configuration> <forkMode>always</forkMode> <systemPropertyVariables> <mavenRepoPath>${settings.localRepository}</mavenRepoPath> <slf4j.version>${slf4j.version}</slf4j.version> <logback.version>${logback.version}</logback.version> <project.version>${project.version}</project.version> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-java</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>[3.0.0,)</version> </requireMavenVersion> <requireJavaVersion> <version>[1.8,)</version> <message>[ERROR] OLD JDK [${java.version}] in use. Jetty ${project.version} requires JDK 1.7 or newer</message> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.4</version> <executions> <execution> <id>create-help-mojo</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <configuration> <source>8</source> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> <encoding>UTF-8</encoding> <docfilessubdirs>true</docfilessubdirs> <detectLinks>false</detectLinks> <detectJavaApiLink>false</detectJavaApiLink> <show>protected</show> <attach>true</attach> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <goals>javadoc:aggregate-jar deploy</goals> <arguments>-Peclipse-release -DskipTests</arguments> <preparationGoals>clean install</preparationGoals> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>jdk11</id> <activation> <jdk>[11,)</jdk> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalJOption>--no-module-directories</additionalJOption> <additionalOptions>-html5</additionalOptions> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <id>eclipse-release</id> <build> <plugins> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <configuration> <updateReleaseInfo>true</updateReleaseInfo> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>oss.sonatype.org</id> <name>Jetty Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>oss.sonatype.org</id> <name>Jetty Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/jetty-snapshots/</url> </snapshotRepository> </distributionManagement> </project>