https://github.com/fhooeaist/bpmn-viz
BPMN visualization provides a functionality to generate the diagramm interchange information for a given BPMN model.
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.4%) to scientific vocabulary
Keywords
Repository
BPMN visualization provides a functionality to generate the diagramm interchange information for a given BPMN model.
Basic Info
- Host: GitHub
- Owner: FHOOEAIST
- License: mpl-2.0
- Language: Java
- Default Branch: main
- Homepage: https://fhooeaist.github.io/bpmn-viz/
- Size: 858 KB
Statistics
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 5
- Releases: 0
Topics
Metadata Files
README.md
BPMN Visualization
BPMN visualization provides a functionality to generate the diagramm interchange information for a given BPMN model.
Getting Started
To use the bpmn visualization, simply include the maven dependency on the project.
xml
<dependency>
<groupId>science.aist</groupId>
<artifactId>bpmn-viz</artifactId>
<version>1.0.0</version>
<scope>compile</scope> <!-- Note: this is default -->
</dependency>
Then you are able to load generate the diagramm interchange information the following way:
java
// Create the repository to load the definition elements
XMLRepository<TDefinitions> repository = new BPMNTDefinitionsRepository();
// Load the root element
JAXBElement<TDefinitions> tDefinitionsJAXBElement = repository.load(...);
// Create the processing data
BpmnProcessorData bpmnProcessorData = new BpmnProcessorData(tDefinitionsJAXBElement, horizontalLayout);
// create the auto layouter
BpmnAutoLayout bpmnAutoLayout = new BpmnAutoLayout(bpmnProcessorData);
// run the auto layouting
bpmnAutoLayout.execute();
// save the element back again (note: the org. element is manipulated)
repository.save(tDefinitionsJAXBElement, ...);
Building the BPMN visualization yourself
If you want to build the project yourself, just checkout this git repo, make sure you have jdk 11 or above installed as
well as maven 3.6.0 or above and build the project by running the maven command: mvn package. This results in a
jar-file inside the target folder, which can be used as a dependency in other projects.
FAQ
If you have any questions, please checkout our FAQ section.
Contributing
First make sure to read our general contribution guidelines.
Licence
Copyright (c) 2020 the original author or authors. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
The following code is under different licence and copyright:
| Licence | Filepaths |
|-|-|
| Apache 2.0
see LICENCEAPACHE20 | src/main/java/science/aist/bpmn/viz/BpmnAutoLayout.java |
| jgraph mxgraph
see LICENSEJGRAPH_MXGRAPH | dependency: com.mxgraph:mxgraph-all:3.7.4 |
Research
If you are going to use this project as part of a research paper, we would ask you to reference this project by citing
it.
Owner
- Name: Advanced Information Systems and Technology
- Login: FHOOEAIST
- Kind: organization
- Email: contact@aist.science
- Location: University of Applied Sciences Upper Austria, Softwarepark 11, 4232 Hagenberg, Austria
- Website: https://github.aist.science/
- Twitter: fhooeaist
- Repositories: 33
- Profile: https://github.com/FHOOEAIST
The research group AIST researches software solutions in the fields of eHealth, Machine Learning and Data Mining as well as Computer Vision.
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 7
- Total pull requests: 20
- Average time to close issues: 25 days
- Average time to close pull requests: about 2 months
- Total issue authors: 1
- Total pull request authors: 3
- Average comments per issue: 0.14
- Average comments per pull request: 0.7
- Merged pull requests: 10
- Bot issues: 0
- Bot pull requests: 15
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- pointan (7)
Pull Request Authors
- dependabot[bot] (15)
- pointan (4)
- fhooeaist-bot (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
- Total downloads: unknown
- Total dependent packages: 0
- Total dependent repositories: 1
- Total versions: 3
repo1.maven.org: science.aist:bpmn-viz
Generation of DI for BPMN Models
- Homepage: https://github.com/FHOOEAIST/bpmn-viz
- Documentation: https://appdoc.app/artifact/science.aist/bpmn-viz/
- License: Mozilla Public License (MPL) version 2.0
-
Latest release: 1.0.2
published about 4 years ago
Rankings
Dependencies
- org.projectlombok:lombok 1.18.12 provided
- com.github.vlsi.mxgraph:jgraphx 4.2.2
- science.aist:bpmn-model 1.0.0
- org.testng:testng 7.6.0 test
- actions/checkout v3 composite
- actions/setup-java v3 composite