-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
45,504 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
<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.toolchain</groupId> | ||
<artifactId>jetty-toolchain</artifactId> | ||
<version>1.6</version> | ||
<relativePath>../jetty-toolchain</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.eclipse.jetty.toolchain</groupId> | ||
<artifactId>jetty-schemas</artifactId> | ||
<version>5.3-SNAPSHOT</version> | ||
<name>Jetty :: Schemas</name> | ||
<packaging>jar</packaging> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<scm> | ||
<connection>scm:git:https://github.com/eclipse/jetty.toolchain.git</connection> | ||
<developerConnection>scm:git:[email protected]:eclipse/jetty.toolchain.git</developerConnection> | ||
<url>https://github.com/eclipse/jetty.toolchain/tree/master/jetty-schemas</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<build> | ||
<resources> | ||
<!-- schemas must be on both path to be able to use for 9.4/10 and 11 --> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
<resource> | ||
<directory>src/main/resources/jakarta/servlet</directory> | ||
<targetPath>javax/servlet</targetPath> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>test-jar</id> | ||
<goals> | ||
<goal>test-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<archive> | ||
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>process</goal> | ||
</goals> | ||
<configuration> | ||
<resourceBundles> | ||
<resourceBundle>org.eclipse.jetty.toolchain:jetty-artifact-remote-resources:1.2</resourceBundle> | ||
</resourceBundles> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>5.1.9</version> | ||
<extensions>true</extensions> | ||
<executions> | ||
<execution> | ||
<id>bundle-manifest</id> | ||
<phase>process-classes</phase> | ||
<goals> | ||
<goal>manifest</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-SymbolicName>org.eclipse.jetty.schemas;singleton:=true</Bundle-SymbolicName> | ||
<Bundle-Name>Jetty Servlet Schemas</Bundle-Name> | ||
<Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-RequiredExecutionEnvironment> | ||
<_nouses>true</_nouses> | ||
<Export-Package> | ||
javax.servlet.resources;version="4.0", | ||
javax.servlet.jsp.resources;version="4.0", | ||
jakarta.servlet.resources;version="5.0", | ||
jakarta.servlet.jsp.resources;version="5.0", | ||
</Export-Package> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<configuration> | ||
<useReleaseProfile>true</useReleaseProfile> | ||
<releaseProfiles>eclipse-release</releaseProfiles> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.11.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.1.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>3.3.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.3.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.3.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.6.0</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="public"> | ||
|
||
<!-- | ||
======================================================================== | ||
Copyright (c) 1995-2012 Mort Bay Consulting Pty. Ltd. | ||
======================================================================== | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
and Apache License v2.0 which accompanies this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
The Apache License v2.0 is available at | ||
http://www.opensource.org/licenses/apache2.0.php | ||
You may elect to redistribute this code under either of these licenses. | ||
======================================================================== | ||
This is an XML Catalog data file for Jetty Relevant Schemas. | ||
It is provided as a convenience in building your own catalog files. | ||
--> | ||
|
||
<!-- JSP Entries --> | ||
|
||
<uri name="http://java.sun.com/xml/ns/j2ee/jsp_2_0.xsd" uri="jsp/resources/jsp_2_0.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/jsp_2_1.xsd" uri="jsp/resources/jsp_2_1.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/jsp_2_2.xsd" uri="jsp/resources/jsp_2_2.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/jsp_2_3.xsd" uri="jsp/resources/jsp_2_3.xsd"/> | ||
|
||
<uri name="http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" uri="jsp/resources/web-jsptaglibrary_2_0.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd" uri="jsp/resources/web-jsptaglibrary_2_1.xsd"/> | ||
|
||
<!-- Servlet Entries --> | ||
|
||
<uri name="http://java.sun.com/xml/ns/j2ee/j2ee_1_4.xsd" uri="resources/j2ee_1_4.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/javaee_5.xsd" uri="resources/javaee_5.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/javaee_6.xsd" uri="resources/javaee_6.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_7.xsd" uri="resources/javaee_7.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_8.xsd" uri="resources/javaee_8.xsd"/> | ||
|
||
<uri name="http://java.sun.com/xml/ns/j2ee/j2ee_web_services_1_1.xsd" uri="resources/j2ee_web_services_1_1.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_1_2.xsd" uri="resources/javaee_web_services_1_2.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_1_3.xsd" uri="resources/javaee_web_services_1_3.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_1_4.xsd" uri="resources/javaee_web_services_1_4.xsd"/> | ||
|
||
<uri name="http://java.sun.com/xml/ns/j2ee/j2ee_web_services_client_1_1.xsd" uri="resources/j2ee_web_services_client_1_1.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_client_1_2.xsd" uri="resources/javaee_web_services_client_1_2.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_client_1_3.xsd" uri="resources/javaee_web_services_client_1_3.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_client_1_4.xsd" uri="resources/javaee_web_services_client_1_4.xsd"/> | ||
|
||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/permissions_7.xsd" uri="resources/permissions_7.xsd"/> | ||
|
||
<uri name="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" uri="resources/web-app_2_4.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" uri="resources/web-app_2_5.xsd"/> | ||
<uri name="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" uri="resources/web-app_3_0.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" uri="resources/web-app_3_1.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" uri="resources/web-app_4_0.xsd"/> | ||
|
||
<uri name="http://java.sun.com/xml/ns/javaee/web-common_3_0.xsd" uri="resources/web-common_3_0.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-common_3_1.xsd" uri="resources/web-common_3_1.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-common_4_0.xsd" uri="resources/web-common_4_0.xsd"/> | ||
|
||
<uri name="http://java.sun.com/xml/ns/javaee/web-fragment_3_0.xsd" uri="resources/web-fragment_3_0.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-fragment_3_1.xsd" uri="resources/web-fragment_3_1.xsd"/> | ||
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-fragment_4_0.xsd" uri="resources/web-fragment_4_0.xsd"/> | ||
|
||
</catalog> |
Oops, something went wrong.