Skip to content

Commit 9ab9147

Browse files
author
Vinay Vishal
committed
Initial Contribution
Signed-off-by: Vinay Vishal <[email protected]>
1 parent db7d133 commit 9ab9147

File tree

104 files changed

+18244
-637
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+18244
-637
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
*.ipr
2+
*.iml
3+
*.iws
4+
*.swp
5+
*~
6+
/target/
7+
.idea
8+
nbactions.xml
9+
.classpath
10+
.project
11+
.settings/
12+
downloads/

CONTRIBUTING.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Contributing to Eclipse Project for Servlet
2+
3+
Thanks for your interest in this project.
4+
5+
## Project description
6+
7+
Java Servlets is a standard technology for interacting with the web on the
8+
Jakarta EE platform.
9+
10+
* https://projects.eclipse.org/projects/ee4j.servlet
11+
12+
## Developer resources
13+
14+
Information regarding source code management, builds, coding standards, and
15+
more.
16+
17+
* https://projects.eclipse.org/projects/ee4j.servlet/developer
18+
19+
The project maintains the following source code repositories
20+
21+
* https://github.com/eclipse-ee4j/servlet-api
22+
23+
## Eclipse Contributor Agreement
24+
25+
Before your contribution can be accepted by the project team contributors must
26+
electronically sign the Eclipse Contributor Agreement (ECA).
27+
28+
* http://www.eclipse.org/legal/ECA.php
29+
30+
Commits that are provided by non-committers must have a Signed-off-by field in
31+
the footer indicating that the author is aware of the terms by which the
32+
contribution has been provided to the project. The non-committer must
33+
additionally have an Eclipse Foundation account and must have a signed Eclipse
34+
Contributor Agreement (ECA) on file.
35+
36+
For more information, please see the Eclipse Committer Handbook:
37+
https://www.eclipse.org/projects/handbook/#resources-commit
38+
39+
## Contact
40+
41+
Contact the project developers via the project's "dev" list.
42+
43+
* https://accounts.eclipse.org/mailing-list/servlet-dev
44+

LICENSE.md

Lines changed: 637 additions & 637 deletions
Large diffs are not rendered by default.

NOTICE.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Notices for Eclipse Project for Servlet
2+
3+
This content is produced and maintained by the Eclipse Project for Servlet
4+
project.
5+
6+
* Project home: https://projects.eclipse.org/projects/ee4j.servlet
7+
8+
## Trademarks
9+
10+
Eclipse Project for Servlet is a trademark of the Eclipse Foundation.
11+
12+
## Copyright
13+
14+
All content is the property of the respective authors or their employers. For
15+
more information regarding authorship of content, please consult the listed
16+
source code repository logs.
17+
18+
## Declared Project Licenses
19+
20+
This program and the accompanying materials are made available under the terms
21+
of the Eclipse Public License v. 2.0 which is available at
22+
http://www.eclipse.org/legal/epl-2.0. This Source Code may also be made
23+
available under the following Secondary Licenses when the conditions for such
24+
availability set forth in the Eclipse Public License v. 2.0 are satisfied: GNU
25+
General Public License, version 2 with the GNU Classpath Exception which is
26+
available at https://www.gnu.org/software/classpath/license.html.
27+
28+
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
29+
30+
## Source Code
31+
32+
The project maintains the following source code repositories:
33+
34+
* https://github.com/eclipse-ee4j/servlet-api
35+
36+
## Third-party Content
37+
38+
## Cryptography
39+
40+
Content may contain encryption software. The country in which you are currently
41+
may have restrictions on the import, possession, and use, and/or re-export to
42+
another country, of encryption software. BEFORE using any encryption software,
43+
please check the country's laws, regulations and policies concerning the import,
44+
possession, or use, and re-export of encryption software, to see if this is
45+
permitted.

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Java Servlet API
2+
================
3+
4+
Building
5+
--------
6+
7+
Prerequisites:
8+
9+
* JDK8+
10+
* Maven 3.0.3+
11+
12+
Run the build:
13+
14+
`mvn install`
15+
16+
The build runs copyright check and generates the jar, sources-jar and javadoc-jar by default.
17+
18+
Checking findbugs
19+
-----------------
20+
21+
`mvn -DskipTests -Dfindbugs.threshold=Low findbugs:findbugs`
22+

copyright-exclude

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
copyright-exclude
2+
LICENSE
3+
README
4+
CONTRIBUTING.md
5+
src/main/javadoc/doc-files/expert-draft-bg-blank.graffle
6+
src/main/javadoc/doc-files/expert-draft-bg-blank.png
7+
src/main/javadoc/doc-files/expert-draft-bg-non-blank.graffle
8+
src/main/javadoc/doc-files/expert-draft-bg-non-blank.png
9+
src/main/javadoc/doc-files/expert-draft-bg.png
10+
src/main/javadoc/doc-files/speclicense.html

exclude.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--
2+
3+
Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
4+
5+
This program and the accompanying materials are made available under the
6+
terms of the Eclipse Public License v. 2.0, which is available at
7+
http://www.eclipse.org/legal/epl-2.0.
8+
9+
This Source Code may also be made available under the following Secondary
10+
Licenses when the conditions for such availability set forth in the
11+
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
12+
version 2 with the GNU Classpath Exception, which is available at
13+
https://www.gnu.org/software/classpath/license.html.
14+
15+
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
16+
17+
-->
18+
19+
<FindBugsFilter>
20+
<!--
21+
Shing Wai Chan has discussed this issue with Bill Shannon.
22+
The ServletRequestEvent is not intended to be a Serializable,
23+
which is inherited from java.util.EventObject.
24+
-->
25+
<Match>
26+
<Class name="javax.servlet.ServletRequestEvent"/>
27+
<Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
28+
</Match>
29+
</FindBugsFilter>

0 commit comments

Comments
 (0)