Skip to content
Draft
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
4 changes: 3 additions & 1 deletion .github/workflows/build_bridgelink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
push:
branches:
- bridgelink_development
# TODO: testing only
- fix_github_ant_build
pull_request:
branches:
- bridgelink_development
Expand All @@ -21,7 +23,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
java-package: 'jdk+fx'
distribution: 'zulu'

Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/build_bridgelink_maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ "maven", "bridgelink_development" ]
pull_request:
branches: [ "bridgelink_development" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -DskipTests -B package --file pom.xml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ donkey/donkey-test
**/junit-reports
**/code-coverage-reports
.DS_Store
**/target

# /client/
/client/logs
Expand Down
135 changes: 135 additions & 0 deletions client/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.innovarhealthcare</groupId>
<artifactId>bridge-link-parent</artifactId>
<version>0.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bridge-link-client</artifactId>

<dependencies>
<dependency>
<groupId>com.innovarhealthcare</groupId>
<artifactId>bridge-link-donkey</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.innovarhealthcare</groupId>
<artifactId>bridge-link-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.swinglabs</groupId>
<artifactId>swingx-core</artifactId>
<version>1.6.2-2</version>
</dependency>
<dependency>
<groupId>com.fifesoft</groupId>
<artifactId>rsyntaxtextarea</artifactId>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>com.fifesoft</groupId>
<artifactId>autocomplete</artifactId>
<version>2.5.4</version>
</dependency>
<dependency>
<groupId>com.fifesoft</groupId>
<artifactId>languagesupport</artifactId>
<!-- TODO: ant has no version number -->
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<!-- TODO: ant uses a combined openjfx.jar with no version, this is our best guest -->
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<!-- TODO: ant uses a combined openjfx.jar with no version, this is our best guest -->
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<!-- TODO: ant uses a combined openjfx.jar with no version, this is our best guest -->
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<!-- TODO: ant uses a combined openjfx.jar with o version, this is our best guest -->
<version>11</version>
</dependency>
<dependency>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-swing</artifactId>
<version>4.2</version>
</dependency>
<dependency>
<groupId>com.jgoodies</groupId>
<artifactId>jgoodies-looks</artifactId>
<!-- TODO: ant uses 2.3.1-->
<version>2.5.2</version>
</dependency>
<dependency>
<groupId>com.google.code.javaparser</groupId>
<artifactId>javaparser</artifactId>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>wizard</groupId>
<artifactId>wizard</artifactId>
<version>1.0</version>
<!-- TODO: find maven artefact -->
<scope>system</scope>
<systemPath>${maven.multiModuleProjectDirectory}/client/lib/wizard.jar</systemPath>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.22.1</version>
</dependency>
<dependency>
<groupId>com.googlecode.libphonenumber</groupId>
<artifactId>libphonenumber</artifactId>
<version>8.12.50</version>
</dependency>
<dependency>
<groupId>com.sun.pdfview</groupId>
<artifactId>PDFRenderer</artifactId>
<version>1.0</version>
<!-- TODO: find maven artefact -->
<scope>system</scope>
<systemPath>${maven.multiModuleProjectDirectory}/server/lib/extensions/pdfviewer/PDFRenderer.jar</systemPath>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>*.java</exclude>
</excludes>
</resource>
</resources>
</build>

</project>
34 changes: 34 additions & 0 deletions command/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.innovarhealthcare</groupId>
<artifactId>bridge-link-parent</artifactId>
<version>0.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bridge-link-command</artifactId>

<dependencies>
<dependency>
<groupId>com.innovarhealthcare</groupId>
<artifactId>bridge-link-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
</build>

</project>
36 changes: 36 additions & 0 deletions custom-extensions/dynamic-lookup-gateway/client/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.innovarhealthcare</groupId>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway</artifactId>
<version>0.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway-client</artifactId>
<dependencies>
<dependency>
<groupId>com.innovarhealthcare</groupId>
<artifactId>bridge-link-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.innovarhealthcare</groupId>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway-shared</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.9</version>
</dependency>
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.5.6</version>
</dependency>
</dependencies>
</project>
21 changes: 21 additions & 0 deletions custom-extensions/dynamic-lookup-gateway/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.innovarhealthcare</groupId>
<artifactId>bridge-link-parent</artifactId>
<version>0.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway</artifactId>
<packaging>pom</packaging>

<modules>
<module>shared</module>
<module>server</module>
<module>client</module>
</modules>
</project>
22 changes: 22 additions & 0 deletions custom-extensions/dynamic-lookup-gateway/server/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.innovarhealthcare</groupId>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway</artifactId>
<version>0.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway-server</artifactId>
<dependencies>
<dependency>
<groupId>com.innovarhealthcare</groupId>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway-shared</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
22 changes: 22 additions & 0 deletions custom-extensions/dynamic-lookup-gateway/shared/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.innovarhealthcare</groupId>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway</artifactId>
<version>0.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bridge-link-plugin-dynamic-lookup-gateway-shared</artifactId>
<dependencies>
<dependency>
<groupId>com.innovarhealthcare</groupId>
<artifactId>bridge-link-server</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
Loading