Skip to content

Commit

Permalink
Merge pull request JacORB#282 from rnc/BR1
Browse files Browse the repository at this point in the history
  • Loading branch information
rnc committed Aug 30, 2021
2 parents 54c9cfb + cd22ae2 commit 961dfd6
Show file tree
Hide file tree
Showing 26 changed files with 82 additions and 145 deletions.
6 changes: 0 additions & 6 deletions .github/dependabot.yml

This file was deleted.

27 changes: 14 additions & 13 deletions .github/workflows/maven.yml
Expand Up @@ -11,10 +11,6 @@ on:

jobs:
build:
strategy:
fail-fast: false
matrix:
maven: [3.3.9, 3.5.4, 3.6.3, 3.8.1]
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idif
if: github.repository == 'JacORB/JacORB' && github.event_name == 'pull_request'
runs-on: ubuntu-latest
Expand All @@ -27,18 +23,19 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 11
- name: Set up JDK 8
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 8
- name: Set up Maven
uses: stCarolas/setup-maven@v4
with:
maven-version: ${{ matrix.maven }}
maven-version: 3.6.3
- name: Build with Maven
run: mvn -B -V -Dtravis-ci=true -DskipJavadoc=true -DskipPDFGeneration clean install
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
run: mvn -B -V -DskipPDFGeneration clean install
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ failure() }}
- name: Codecov
uses: codecov/codecov-action@v1

Expand All @@ -54,10 +51,14 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 11
- name: Set up JDK 8
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 8
- name: Set up Maven
uses: stCarolas/setup-maven@v4
with:
maven-version: 3.6.3
# https://github.com/marketplace/actions/maven-setings-action
- name: Maven Settings
uses: s4u/maven-settings-action@v2
Expand All @@ -71,6 +72,6 @@ jobs:
"password": "${{ secrets.SONATYPE_PASSWORD }}"
}]
- name: Deploy Snapshot
run: mvn -B -V org.apache.maven.plugins:maven-source-plugin:jar-no-fork -Dtravis-ci=true -DskipJavadoc=true -DskipPDFGeneration deploy
run: mvn -B -V org.apache.maven.plugins:maven-source-plugin:jar-no-fork -DskipPDFGeneration deploy -DskipTests=true
- name: Codecov
uses: codecov/codecov-action@v1
2 changes: 1 addition & 1 deletion bin/dior
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Decodes and prints the components of a stringified IOR
#
Expand Down
2 changes: 1 addition & 1 deletion bin/evc
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB event channel
jaco org.jacorb.events.EventChannelImpl "$@"
2 changes: 1 addition & 1 deletion bin/fixior
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Patches address and port information into IOR

jaco org.jacorb.orb.util.FixIOR "$@"
2 changes: 1 addition & 1 deletion bin/idl
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

resolve()
{
Expand Down
2 changes: 1 addition & 1 deletion bin/imr
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB Implementation Repository
jaco org.jacorb.imr.ImplementationRepositoryImpl "$@"
2 changes: 1 addition & 1 deletion bin/imr_mg
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB Implementation repository manager
jaco org.jacorb.imr.util.ImRManager "$@"
2 changes: 1 addition & 1 deletion bin/imr_ssd
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB ImR server startup daemon
jaco org.jacorb.imr.ServerStartupDaemonImpl "$@"
2 changes: 1 addition & 1 deletion bin/ir
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB Interface Repository
jaco org.jacorb.ir.IRServer "$@"
2 changes: 1 addition & 1 deletion bin/irbrowser
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB Interface Repositor Browser

Expand Down
2 changes: 1 addition & 1 deletion bin/jacapplet
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# call appletviewer with appropriate options
#appletviewer -J"-Xbootclasspath:/home/bwana/brose/Work/jacorb/classes:/home/bwana/brose/Work/jacorb/classes/org.jacorb.jar:/import/java2/jre/lib/rt.jar:${CLASSPATH}" "$@"
echo "Please edit this script to match your installation"
Expand Down
2 changes: 1 addition & 1 deletion bin/jaco
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

resolve()
{
Expand Down
2 changes: 1 addition & 1 deletion bin/lsns
@@ -1,4 +1,4 @@
#!/bin/sh -f
#!/bin/bash -f
# List bindings in the JacORB Name Server

jaco org.jacorb.naming.ContextLister "$@"
2 changes: 1 addition & 1 deletion bin/nmg
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB name server
jaco org.jacorb.naming.namemanager.NameManager "$@"
2 changes: 1 addition & 1 deletion bin/ns
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB name server
jaco org.jacorb.naming.NameServer "$@"
2 changes: 1 addition & 1 deletion bin/ns-wrapper
@@ -1,4 +1,4 @@
#! /bin/sh
#! /bin/bash
#
# sh script suitable for starting and stopping
# the JacORB Naming Service controlled by the Java Service Wrapper
Expand Down
2 changes: 1 addition & 1 deletion bin/ntfy
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# JacORB Notification Service

Expand Down
2 changes: 1 addition & 1 deletion bin/ntfy-wrapper
@@ -1,4 +1,4 @@
#! /bin/sh
#! /bin/bash
#
# shell script suitable for starting and stopping
# the JacORB Notification Service controlled by the Java Service Wrapper
Expand Down
2 changes: 1 addition & 1 deletion bin/pingo
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# decodes and prints the components of a stringified IOR

jaco org.jacorb.orb.util.PingObject "$@"
2 changes: 1 addition & 1 deletion bin/qir
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB Interface Repository Query Tool
jaco org.jacorb.ir.QueryIR "$@"
2 changes: 1 addition & 1 deletion bin/ts
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Starts the JacORB TransactionService
jaco org.jacorb.transaction.TransactionService "$@"
2 changes: 1 addition & 1 deletion bin/version
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

resolve()
{
Expand Down
3 changes: 3 additions & 0 deletions core/pom.xml
Expand Up @@ -85,6 +85,9 @@
<include>TransportCurrent.idl</include>
<include>IIOPTransportCurrent.idl</include>
</includes>
<additionalArguments>
<additionalArgument>-sloppy_names</additionalArgument>
</additionalArguments>
</source>
</sources>
</configuration>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Expand Up @@ -29,7 +29,7 @@

<name>JacORB</name>
<description>JacORB CORBA Object Request Broker (ORB)</description>
<url>http://www.jacorb.org</url>
<url>https://www.jacorb.org</url>

<licenses>
<license>
Expand All @@ -45,13 +45,13 @@
</scm>

<issueManagement>
<system>Bugzilla</system>
<url>http://www.jacorb.org/cgi-bin/bugzilla/index.cgi</url>
<system>GitHub</system>
<url>https://github.com/JacORB/JacORB/issues</url>
</issueManagement>

<organization>
<name>JacORB</name>
<url>http://www.jacorb.org</url>
<url>https://www.jacorb.org</url>
</organization>

<developers>
Expand Down Expand Up @@ -256,7 +256,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.0</version>
</plugin>

<plugin>
Expand Down

0 comments on commit 961dfd6

Please sign in to comment.