File: pom.xml

package info (click to toggle)
jetty9 9.4.57-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 52,280 kB
  • sloc: java: 442,605; xml: 25,482; javascript: 1,039; sh: 908; jsp: 268; sql: 40; makefile: 16
file content (29 lines) | stat: -rw-r--r-- 1,004 bytes parent folder | download | duplicates (3)
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
<?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</groupId>
    <artifactId>jetty-project</artifactId>
    <version>9.4.57.v20241219</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>org.eclipse.jetty.examples</groupId>
  <artifactId>examples-parent</artifactId>
  <name>Jetty Examples :: Parent</name>
  <packaging>pom</packaging>

  <properties>
    <sonar.skip>true</sonar.skip>
    <spotbugs.skip>true</spotbugs.skip>
    <maven.deploy.skip>true</maven.deploy.skip>
  </properties>

  <modules>
    <!--
    - The async-rest and embedded are examples that have historical locations,
    - new ones should appear nested under o.e.jetty.examples groupId
    -->
    <module>async-rest</module>
    <module>embedded</module>
  </modules>
</project>