Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
JAVA_VERSION: 21
JAVA_VERSION: 25
NODE_VERSION: 23
PNPM_VERSION: 10.4.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [ master ]

env:
JAVA_VERSION: 21
JAVA_VERSION: 25
NODE_VERSION: 23
PNPM_VERSION: 10.4.0

Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/sonarqube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
pull_request:
types: [opened, synchronize, reopened]

env:
JAVA_VERSION: 25
NODE_VERSION: 23
PNPM_VERSION: 10.4.0

jobs:
build:
if: github.actor != 'renovate[bot]' && github.actor != 'dependabot[bot]'
Expand All @@ -18,22 +23,22 @@ jobs:
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Set up JDK 21
- name: Set up JDK ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v5
with:
java-version: 21
java-version: ${{ env.JAVA_VERSION }}
distribution: 'temurin'
cache: 'maven'

- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061
with:
version: 10.22.0
version: ${{ env.PNPM_VERSION }}

- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 23
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'

- name: Cache SonarQube packages
Expand Down
13 changes: 13 additions & 0 deletions .run/Flow Hazelcast Cluster.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Flow Hazelcast Cluster" type="docker-deploy" factoryName="docker-compose.yml" server-name="Docker">
<deployment type="docker-compose.yml">
<settings>
<option name="removeImagesOnComposeDown" value="LOCAL" />
<option name="sourceFilePath" value="flow-framework-compose.yml" />
</settings>
</deployment>
<method v="2">
<option name="Maven.BeforeRunTask" enabled="true" file="$PROJECT_DIR$/pom.xml" goal="package" />
</method>
</configuration>
</component>
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21-jre-jammy AS runner
FROM eclipse-temurin:25-jre-jammy AS runner
ARG GID=2000
ARG UID=2000
WORKDIR /app
Expand Down
32 changes: 32 additions & 0 deletions docker/resources/Configuration.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<Configuration>
<adapter name="HelloWorld">
<receiver name="HelloWorld">
<!-- This listener is used when the API is called as specified in OpenAPI 3.0 at the Webservices page -->
<listener
name="HelloWorld"
className="org.frankframework.http.rest.ApiListener"
uriPattern="hello-world"
allowAllParams="false"
/>
</receiver>
<receiver name="HelloWorld">
<!-- This listener is used by the scheduler and IbisLocalSender in adapter HelloWorlds -->
<listener
name="HelloWorld"
className="org.frankframework.receivers.JavaListener"
/>
</receiver>
<pipeline firstPipe="HelloWorld">
<exits>
<exit name="EXIT" state="success"/>
</exits>
<pipe
name="HelloWorld"
className="org.frankframework.pipes.EchoPipe"
getInputFromFixedValue="Hello World"
>
<forward name="success" path="EXIT"/>
</pipe>
</pipeline>
</adapter>
</Configuration>
4 changes: 4 additions & 0 deletions docker/resources/resources.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
jdbc:
- name: "frank2flowinstance"
type: "org.h2.jdbcx.JdbcDataSource"
url: "jdbc:h2:mem:test;NON_KEYWORDS=VALUE;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=-1;TRACE_LEVEL_FILE=0;"
24 changes: 24 additions & 0 deletions flow-framework-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
services:
flow:
image: ghcr.io/frankframework/flow:latest
build:
dockerfile: ./docker/Dockerfile
context: .
environment:
SPRING_PROFILES_ACTIVE: cloud
management.gateway.outbound.class: org.frankframework.management.gateway.HazelcastOutboundGateway
ports:
Comment thread
Matthbo marked this conversation as resolved.
- "8080:8080"
- "5700-5709:5700-5709"

ff-test:
image: frankframework/frankframework:latest
ports:
- "8081:8080"
- "5710-5720:5700-5710"
volumes:
- ./docker/resources:/opt/frank/resources
environment:
- instance.name=Frank2FlowInstance
- dtap.stage=LOC
- management.gateway.inbound.class=org.frankframework.management.gateway.HazelcastInboundGateway,org.frankframework.management.bus.LocalGateway
Loading
Loading