Skip to content

Commit 3adc3bc

Browse files
author
Vinay Vishal
committed
Initial Contribution
Signed-off-by: Vinay Vishal <[email protected]>
0 parents  commit 3adc3bc

File tree

526 files changed

+94403
-0
lines changed

Some content is hidden

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

526 files changed

+94403
-0
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
build/**
3+
.gradle/**
4+
**/target/**
5+
.idea/**
6+
*.iml
7+
**/dependency-reduced-pom.xml

.hgignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
syntax:glob
2+
3+
.DS_Store
4+
pfl-test/gen/work.*/**
5+
*.class
6+
**/target/**
7+
.idea/**
8+
*.iml

CONTRIBUTING.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Contributing to Eclipse ORB
2+
3+
Thanks for your interest in this project.
4+
5+
## Project description
6+
7+
Eclipse ORB is a runtime component that can be used for distributed computing
8+
using IIOP communication.
9+
10+
* https://projects.eclipse.org/projects/ee4j.orb
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.orb/developer
18+
19+
The project maintains the following source code repositories
20+
21+
* https://github.com/eclipse-ee4j/orb
22+
* https://github.com/eclipse-ee4j/orb-gmbal
23+
* https://github.com/eclipse-ee4j/orb-gmbal-commons
24+
* https://github.com/eclipse-ee4j/orb-gmbal-pfl
25+
26+
## Eclipse Contributor Agreement
27+
28+
Before your contribution can be accepted by the project team contributors must
29+
electronically sign the Eclipse Contributor Agreement (ECA).
30+
31+
* http://www.eclipse.org/legal/ECA.php
32+
33+
Commits that are provided by non-committers must have a Signed-off-by field in
34+
the footer indicating that the author is aware of the terms by which the
35+
contribution has been provided to the project. The non-committer must
36+
additionally have an Eclipse Foundation account and must have a signed Eclipse
37+
Contributor Agreement (ECA) on file.
38+
39+
For more information, please see the Eclipse Committer Handbook:
40+
https://www.eclipse.org/projects/handbook/#resources-commit
41+
42+
## Contact
43+
44+
Contact the project developers via the project's "dev" list.
45+
46+
* https://accounts.eclipse.org/mailing-list/orb-dev
47+

LICENSE.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions
6+
are met:
7+
8+
- Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
11+
- Redistributions in binary form must reproduce the above copyright
12+
notice, this list of conditions and the following disclaimer in the
13+
documentation and/or other materials provided with the distribution.
14+
15+
- Neither the name of the Eclipse Foundation, Inc. nor the names of its
16+
contributors may be used to endorse or promote products derived
17+
from this software without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20+
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

NOTICE.md

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Notices for Eclipse ORB
2+
3+
This content is produced and maintained by the Eclipse ORB project.
4+
5+
* Project home: https://projects.eclipse.org/projects/ee4j.orb
6+
7+
## Trademarks
8+
9+
Eclipse ORB is a trademark of the Eclipse Foundation.
10+
11+
## Copyright
12+
13+
All content is the property of the respective authors or their employers. For
14+
more information regarding authorship of content, please consult the listed
15+
source code repository logs.
16+
17+
## Declared Project Licenses
18+
19+
This program and the accompanying materials are made available under the terms
20+
of the Eclipse Public License v. 2.0 which is available at
21+
http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License v. 1.0
22+
which is available at http://www.eclipse.org/org/documents/edl-v10.php. This
23+
Source Code may also be made available under the following Secondary Licenses
24+
when the conditions for such availability set forth in the Eclipse Public
25+
License v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU
26+
Classpath Exception which is available at
27+
https://www.gnu.org/software/classpath/license.html.
28+
29+
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH
30+
Classpath-exception-2.0
31+
32+
## Source Code
33+
34+
The project maintains the following source code repositories:
35+
36+
* https://github.com/eclipse-ee4j/orb
37+
* https://github.com/eclipse-ee4j/orb-gmbal
38+
* https://github.com/eclipse-ee4j/orb-gmbal-commons
39+
* https://github.com/eclipse-ee4j/orb-gmbal-pfl
40+
41+
## Third-party Content
42+
43+
This project leverages the following third party content.
44+
45+
ASM (6.0)
46+
47+
* License: BSD-3-Clause
48+
49+
hamcrest-all (1.3)
50+
51+
* License: New BSD License
52+
53+
JUnit (4.12)
54+
55+
* License: Eclipse Public License
56+
57+
OSGi Service Platform Core Companion Code (6.0)
58+
59+
* License: Apache License, 2.0
60+
61+
## Cryptography
62+
63+
Content may contain encryption software. The country in which you are currently
64+
may have restrictions on the import, possession, and use, and/or re-export to
65+
another country, of encryption software. BEFORE using any encryption software,
66+
please check the country's laws, regulations and policies concerning the import,
67+
possession, or use, and re-export of encryption software, to see if this is
68+
permitted.
69+

README.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
This is the [gmbal-pfl project](https://github.com/eclipse-ee4j/orb-gmbal-pfl).
2+
3+
# Java EE Primitive Function Library
4+
As of Java 9, pfl-basic produces a multi-release jar. The main code
5+
is compiled in JDK 1.7 or 1.8, and additional code is compiled using Java 9. For this to work,
6+
the code uses the toolchains plugin to select different compilers. You will need
7+
a toolchains.xml in your .m2 directory.
8+
9+
See <https://maven.apache.org/guides/mini/guide-using-toolchains.html>
10+
11+
To build:
12+
mvn clean install
13+
14+
To test:
15+
mvn test
16+
17+
TODO: TfTest us failing, and is excluded in pom file. Fix it and add it back.
18+
19+
Tests in error:
20+
twoAnnotations(tf.TfTest)
21+
testSync(tf.TfTest): Could not initialize class tf.TfTest
22+
singleMethodInfoCall(tf.TfTest): Could not initialize class tf.TfTest
23+
singleMethodThrowsException(tf.TfTest): Could not initialize class tf.TfTest
24+
singleMethodNoReturn(tf.TfTest): Could not initialize class tf.TfTest
25+
singleMethodReturn(tf.TfTest): Could not initialize class tf.TfTest
26+
testSimple(tf.TfTest): Could not initialize class tf.TfTest
27+
twoCalls(tf.TfTest): Could not initialize class tf.TfTest
28+
twoCallsException(tf.TfTest): Could not initialize class tf.TfTest
29+
30+
31+
## Releasing
32+
33+
* Make sure `gpg-agent` is running.
34+
* Execute `mvn -B release:prepare release:perform`
35+
36+
For publishing the site do the following:
37+
38+
```
39+
cd target/checkout
40+
mvn -Psite verify site site:stage scm-publish:publish-scm
41+
```
42+
43+
====================================================

build.xml

+142
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
5+
6+
This program and the accompanying materials are made available under the
7+
terms of the Eclipse Distribution License v. 1.0, which is available at
8+
http://www.eclipse.org/org/documents/edl-v10.php.
9+
10+
SPDX-License-Identifier: BSD-3-Clause
11+
12+
-->
13+
14+
<!-- You may freely edit this file. See commented blocks below for -->
15+
<!-- some examples of how to customize the build. -->
16+
<!-- (If you delete it and reopen the project it will be recreated.) -->
17+
<!-- By default, only the Clean and Build commands use this build script. -->
18+
<!-- Commands such as Run, Debug, and Test only use this build script if -->
19+
<!-- the Compile on Save feature is turned off for the project. -->
20+
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
21+
<!-- in the project's Project Properties dialog box.-->
22+
<project name="pfl" default="default" basedir=".">
23+
<description>Builds, tests, and runs the project pfl.</description>
24+
<import file="nbproject/build-impl.xml"/>
25+
<import file="bundles.xml"/>
26+
27+
<!--
28+
29+
There exist several targets which are by default empty and which can be
30+
used for execution of your tasks. These targets are usually executed
31+
before and after some main targets. They are:
32+
33+
-pre-init: called before initialization of project properties
34+
-post-init: called after initialization of project properties
35+
-pre-compile: called before javac compilation
36+
-post-compile: called after javac compilation
37+
-pre-compile-single: called before javac compilation of single file
38+
-post-compile-single: called after javac compilation of single file
39+
-pre-compile-test: called before javac compilation of JUnit tests
40+
-post-compile-test: called after javac compilation of JUnit tests
41+
-pre-compile-test-single: called before javac compilation of single JUnit test
42+
-post-compile-test-single: called after javac compilation of single JUunit test
43+
-pre-jar: called before JAR building
44+
-post-jar: called after JAR building
45+
-post-clean: called after cleaning build products
46+
47+
(Targets beginning with '-' are not intended to be called on their own.)
48+
49+
Example of inserting an obfuscator after compilation could look like this:
50+
51+
<target name="-post-compile">
52+
<obfuscate>
53+
<fileset dir="${build.classes.dir}"/>
54+
</obfuscate>
55+
</target>
56+
57+
For list of available properties check the imported
58+
nbproject/build-impl.xml file.
59+
60+
61+
Another way to customize the build is by overriding existing main targets.
62+
The targets of interest are:
63+
64+
-init-macrodef-javac: defines macro for javac compilation
65+
-init-macrodef-junit: defines macro for junit execution
66+
-init-macrodef-debug: defines macro for class debugging
67+
-init-macrodef-java: defines macro for class execution
68+
-do-jar-with-manifest: JAR building (if you are using a manifest)
69+
-do-jar-without-manifest: JAR building (if you are not using a manifest)
70+
run: execution of project
71+
-javadoc-build: Javadoc generation
72+
test-report: JUnit report generation
73+
74+
An example of overriding the target for project execution could look like this:
75+
76+
<target name="run" depends="pfl-impl.jar">
77+
<exec dir="bin" executable="launcher.exe">
78+
<arg file="${dist.jar}"/>
79+
</exec>
80+
</target>
81+
82+
Notice that the overridden target depends on the jar target and not only on
83+
the compile target as the regular run target does. Again, for a list of available
84+
properties which you can use, check the target you are overriding in the
85+
nbproject/build-impl.xml file.
86+
87+
-->
88+
<!--
89+
<target name="jars" depends="basic-jar,basic-tools-jar,tf-jar,
90+
tf-tools-jar,dynamic-jar,ff-jar"/>
91+
92+
<target name="basic-jar">
93+
<jar jarfile="dist/basic.jar" duplicate="fail">
94+
<fileset dir="build/classes">
95+
<include name="org/glassfish/basic/**/*.class"/>
96+
<exclude name="org/glassfish/basic/tools/**/"/>
97+
</fileset>
98+
</jar>
99+
</target>
100+
101+
<target name="basic-tools-jar">
102+
<jar jarfile="dist/basic-tools.jar" duplicate="fail">
103+
<fileset dir="build/classes">
104+
<include name="org/glassfish/basic/tools/**/"/>
105+
</fileset>
106+
</jar>
107+
</target>
108+
109+
<target name="tf-jar">
110+
<jar jarfile="dist/tf.jar" duplicate="fail">
111+
<fileset dir="build/classes">
112+
<include name="org/glassfish/tf/**/*.class"/>
113+
<exclude name="org/glassfish/tf/tools/**/"/>
114+
</fileset>
115+
</jar>
116+
</target>
117+
118+
<target name="tf-tools-jar">
119+
<jar jarfile="dist/tf-tools.jar" duplicate="fail">
120+
<fileset dir="build/classes">
121+
<include name="org/glassfish/tf/tools/**/"/>
122+
</fileset>
123+
</jar>
124+
</target>
125+
126+
<target name="dynamic-jar">
127+
<jar jarfile="dist/dynamic.jar" duplicate="fail">
128+
<fileset dir="build/classes">
129+
<include name="org/glassfish/dynamic/**/*.class"/>
130+
</fileset>
131+
</jar>
132+
</target>
133+
134+
<target name="ff-jar">
135+
<jar jarfile="dist/ff.jar" duplicate="fail">
136+
<fileset dir="build/classes">
137+
<include name="org/glassfish/ff/**/*.class"/>
138+
</fileset>
139+
</jar>
140+
</target>
141+
-->
142+
</project>

0 commit comments

Comments
 (0)