-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3,663 changed files
with
487,778 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,7 @@ | ||
.DS_Store | ||
build/** | ||
.gradle/** | ||
**/target/** | ||
.idea/** | ||
*.iml | ||
|
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,47 @@ | ||
# Contributing to Eclipse ORB | ||
|
||
Thanks for your interest in this project. | ||
|
||
## Project description | ||
|
||
Eclipse ORB is a runtime component that can be used for distributed computing | ||
using IIOP communication. | ||
|
||
* https://projects.eclipse.org/projects/ee4j.orb | ||
|
||
## Developer resources | ||
|
||
Information regarding source code management, builds, coding standards, and | ||
more. | ||
|
||
* https://projects.eclipse.org/projects/ee4j.orb/developer | ||
|
||
The project maintains the following source code repositories | ||
|
||
* https://github.com/eclipse-ee4j/orb | ||
* https://github.com/eclipse-ee4j/orb-gmbal | ||
* https://github.com/eclipse-ee4j/orb-gmbal-commons | ||
* https://github.com/eclipse-ee4j/orb-gmbal-pfl | ||
|
||
## Eclipse Contributor Agreement | ||
|
||
Before your contribution can be accepted by the project team contributors must | ||
electronically sign the Eclipse Contributor Agreement (ECA). | ||
|
||
* http://www.eclipse.org/legal/ECA.php | ||
|
||
Commits that are provided by non-committers must have a Signed-off-by field in | ||
the footer indicating that the author is aware of the terms by which the | ||
contribution has been provided to the project. The non-committer must | ||
additionally have an Eclipse Foundation account and must have a signed Eclipse | ||
Contributor Agreement (ECA) on file. | ||
|
||
For more information, please see the Eclipse Committer Handbook: | ||
https://www.eclipse.org/projects/handbook/#resources-commit | ||
|
||
## Contact | ||
|
||
Contact the project developers via the project's "dev" list. | ||
|
||
* https://accounts.eclipse.org/mailing-list/orb-dev | ||
|
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,29 @@ | ||
|
||
Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
|
||
- Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
- Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
- Neither the name of the Eclipse Foundation, Inc. nor the names of its | ||
contributors may be used to endorse or promote products derived | ||
from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS | ||
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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,49 @@ | ||
# | ||
# Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Eclipse Distribution License v. 1.0, which is available at | ||
# http://www.eclipse.org/org/documents/edl-v10.php. | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
How to build ORB .jars for delivery to GlassFish: | ||
|
||
--------------------------------------- | ||
# to build and run all tests: | ||
cd <ws> | ||
mvn -P all-tests clean install | ||
# | ||
# (temporarily broken) Run dev tests with code coverage enabled. | ||
# Cobertura code coverage report generated at: <ws>/build/cobertura/index.html | ||
ant do-cobertura-test | ||
# | ||
--------------------------------------- | ||
# to run a single test with custom arguments: | ||
cd <ws> | ||
mvn -Dtest.args="<args supported by test framework>" install | ||
|
||
For example: | ||
1. To run a specific test: | ||
mvn -Dtest.args="-test corba.connectioncache.ConnectionCacheTest" install | ||
|
||
2. To debug a test, client process: | ||
mvn -Dtest.args="-test corba.connectioncache.ConnectionCacheTest -rdebug client" install | ||
|
||
In the debug mode, the test waits for remote debugger to connect on the port, printed on console. The test continues once the remote debugger connects. | ||
|
||
3. To debug a test, server process: | ||
mvn -Dtest.args="-test corba.cdrext.CDRExtTest -rdebug server" install | ||
|
||
4. Multiple remote debuggers may also be attached to client, server, and controller processes (this is not well tested): | ||
mvn -Dtest.args=""-test corba.sometest -rdebug client:server:controller" install | ||
--------------------------------------- | ||
|
||
For details, see | ||
<ws>/make/build.xml | ||
<ws>/make/src-build.xml | ||
|
||
Generated Bundles: <ws>/build/rename/ee/build/release/lib/bundles-archive.zip | ||
|
||
|
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,15 @@ | ||
# Glassfish CORBA ORB | ||
|
||
This is the [glassfish-corba project](https://javaee.github.io/glassfish-corba/). | ||
|
||
## Releasing | ||
|
||
* Make sure `gpg-agent` is running. | ||
* Execute `mvn -B release:prepare release:perform` | ||
|
||
For publishing the site do the following: | ||
|
||
``` | ||
cd target/checkout | ||
mvn verify site site:stage scm-publish:publish-scm | ||
``` |
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,59 @@ | ||
<!-- | ||
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. | ||
This program and the accompanying materials are made available under the | ||
terms of the Eclipse Distribution License v. 1.0, which is available at | ||
http://www.eclipse.org/org/documents/edl-v10.php. | ||
SPDX-License-Identifier: BSD-3-Clause | ||
--> | ||
|
||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.glassfish.corba</groupId> | ||
<artifactId>glassfish-corba</artifactId> | ||
<version>4.2.0-b005-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>glassfish-corba-csiv2-idl</artifactId> | ||
<name>Generated CSIv2 APIs</name> | ||
<packaging>bundle</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>idlj-maven-plugin</artifactId> | ||
<configuration> | ||
<includeDirs> | ||
<includeDir>../omgapi/src/main/idl</includeDir> | ||
<includeDir>../omgapi/src/main/idl-includes</includeDir> | ||
</includeDirs> | ||
<sources> | ||
<source> | ||
<packagePrefixes> | ||
<packagePrefix><type>CSI</type> <prefix>com.sun.corba.ee.org.omg</prefix></packagePrefix> | ||
<packagePrefix><type>CSIIOP</type> <prefix>com.sun.corba.ee.org.omg</prefix></packagePrefix> | ||
<packagePrefix><type>GSSUP</type> <prefix>com.sun.corba.ee.org.omg</prefix></packagePrefix> | ||
<packagePrefix><type>IOP</type> <prefix>org.omg</prefix></packagePrefix> | ||
</packagePrefixes> | ||
</source> | ||
</sources> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<configuration> | ||
<instructions> | ||
<Export-Package>com.sun.corba.ee.org.omg.*</Export-Package> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.