forked from imixs/open-bpmn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
276cbb0
commit 8b9aa86
Showing
17 changed files
with
105 additions
and
17 deletions.
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
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
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
Binary file not shown.
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,26 @@ | ||
@echo off | ||
setlocal enabledelayedexpansion | ||
|
||
REM Set the directory containing JAR files | ||
set JAR_DIR=. | ||
|
||
REM Set Maven coordinates | ||
set GROUP_ID=com.discovery | ||
set ARTIFACT_ID=discovery-bonita | ||
set VERSION=1.0.0 | ||
|
||
REM Loop through all JAR files in the directory | ||
for %%f in ("%JAR_DIR%\*.jar") do ( | ||
REM Extract the base name of the file (without extension) | ||
set "BASE_NAME=%%~nf" | ||
|
||
REM Install the JAR file using Maven Install Plugin | ||
mvn install:install-file ^ | ||
-Dfile="%%f" ^ | ||
-DgroupId=%GROUP_ID% ^ | ||
-DartifactId=%ARTIFACT_ID%-%BASE_NAME% ^ | ||
-Dversion=%VERSION% ^ | ||
-Dpackaging=jar | ||
) | ||
|
||
endlocal |
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,24 @@ | ||
#!/bin/bash | ||
|
||
# Directory containing JAR files | ||
JAR_DIR="." | ||
|
||
# Group ID, Artifact ID, and Version | ||
GROUP_ID="com.discovery" | ||
ARTIFACT_ID="discovery-bonita" | ||
VERSION="1.0.0" | ||
|
||
# Loop through all JAR files in the directory | ||
for JAR_FILE in "$JAR_DIR"/*.jar; | ||
do | ||
# Extract the base name of the file (without extension) | ||
BASE_NAME=$(basename "$JAR_FILE" .jar) | ||
|
||
# Install the JAR file using Maven Install Plugin | ||
mvn install:install-file \ | ||
-Dfile="$JAR_FILE" \ | ||
-DgroupId="$GROUP_ID" \ | ||
-DartifactId="$ARTIFACT_ID-$BASE_NAME" \ | ||
-Dversion="$VERSION" \ | ||
-Dpackaging=jar | ||
done |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.75 MB
open-bpmn.metamodel/dependencies/org/bpmn-layout-generator-0.1.4-jar-with-dependencies.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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