Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Final Review #6

Closed
wants to merge 36 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2c41533
Moteur_Lite
sandepat Jul 19, 2023
5038621
first working version
sandepat Dec 11, 2023
36b55f1
MoteurLite-1.0
sandepat Feb 21, 2024
3800b1f
Added dependenc for Gasw
sandepat Feb 21, 2024
63e7715
remove comment
sandepat Feb 21, 2024
68b8942
update
sandepat Feb 21, 2024
a7ad71f
update
sandepat Feb 21, 2024
e745a86
update
sandepat Feb 25, 2024
e7187a1
update_25_02
sandepat Feb 25, 2024
f8544c7
Major Updates -
sandepat Apr 4, 2024
38de56d
First working model (alpha version)
sandepat May 6, 2024
913ed8e
Moteurlite-Alpha (first working version)
sandepat May 17, 2024
ea38c8a
Add .gitignore file
sandepat Jun 6, 2024
392ddd2
Changes made for the review comments by @axlbonnet
sandepat Jun 6, 2024
683cdc1
Update MoteurLite.java
sandepat Jun 13, 2024
4f6a996
Refactored BoutiquesService Class
sandepat Jun 17, 2024
2ece62c
Updated MoteurLite Class
sandepat Jun 17, 2024
9945e72
Moteurlite Final
sandepat Sep 27, 2024
f91c93d
Pom
sandepat Sep 27, 2024
9721396
Not a final version, POM needs to be fixed.
sandepat Oct 9, 2024
4323c56
review changes
sandepat Oct 17, 2024
e17a14f
Update on review comments
sandepat Oct 22, 2024
f644b08
removed unwanted dependenicies
sandepat Oct 25, 2024
ca890dd
review changes in POM
sandepat Oct 28, 2024
62b05f7
pom dependencies
sandepat Oct 29, 2024
c530e9d
Merge pull request #4 from sandepat/moteurLite
axlbonnet Oct 30, 2024
a0e0447
improve pom + add ci
axlbonnet Oct 30, 2024
6debc37
update master branch to main in ci
axlbonnet Oct 30, 2024
466fec8
Merge pull request #5 from axlbonnet/addCi
axlbonnet Oct 30, 2024
ea493f7
Handle exception for custom properties
sandepat Nov 13, 2024
6d9f453
persistInput
sandepat Nov 15, 2024
555b0fa
Merge pull request #7 from sandepat/moteurlite_support
axlbonnet Nov 18, 2024
f361272
Final Review changes
sandepat Nov 21, 2024
2fc5b63
small refactoring + logger + exceptions
axlbonnet Dec 17, 2024
df32a73
pom update
ethaaalpha Dec 18, 2024
b4ea345
fixes and workflowdb-common update
ethaaalpha Dec 19, 2024
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
26 changes: 26 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This is the template for the all of the JAVA VIP projects workflow CI integration

name: VIP CI Integration
env: # beware env value are of string type, not boolean. Need to use fromJSON to convert them to boolean
isProduction: ${{ github.event_name == 'push' && github.ref_name == 'master' }}
prepareRelease: ${{ github.event_name == 'push' && github.ref_name == 'develop' && contains(github.event.head_commit.message, 'prepare release') }}

on:
push:
branches: [develop, master]
pull_request:
branches: [develop]

jobs:
all:
runs-on: ubuntu-latest
steps:
- name: Review Code
uses: virtual-imaging-platform/vip-github-actions/.github/actions/pmd@develop
with:
quality: 95

- name: Maven
uses: virtual-imaging-platform/vip-github-actions/.github/actions/maven@develop
with:
maven_password: ${{ secrets.NEXUS_PSW }}
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Ignore .class files
*.class

# Ignore .sh files
*.sh

# Ignore .vm files
*.vm

# Ignore system files
.DS_Store
Thumbs.db

# Ignore IDE-specific files
.vscode/
.idea/
*.iml

# Ignore build directories
target/
bin/
build/

# Ignore logs
*.log
6 changes: 6 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# MoteurLite

MoteurLite is a lightweight engine designed to process and execute workflows based on Boutiques descriptors and input files.


**more documentation to be added**
321 changes: 0 additions & 321 deletions moteur2Classes/GaswExtensionInvoker.java

This file was deleted.

Loading