https://github.com/fhooeaist/bpmn-viz

BPMN visualization provides a functionality to generate the diagramm interchange information for a given BPMN model.

https://github.com/fhooeaist/bpmn-viz

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

bpmn-visualization diagramm-interchange-information
Last synced: 8 months ago · JSON representation

Repository

BPMN visualization provides a functionality to generate the diagramm interchange information for a given BPMN model.

Basic Info
Statistics
  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • Open Issues: 5
  • Releases: 0
Topics
bpmn-visualization diagramm-interchange-information
Created over 5 years ago · Last pushed about 3 years ago
Metadata Files
Readme License

README.md

BPMN Visualization

javadoc Maven Central GitHub release License: MPL 2.0 DOI

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 LICENSE
JGRAPH_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. DOI

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

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
confirmed (3) bug (2) hot (1) review (1)
Pull Request Labels
dependencies (15) confirmed (3) review (2)

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

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Dependent repos count: 20.8%
Average: 48.1%
Dependent packages count: 50.1%
Forks count: 58.7%
Stargazers count: 62.8%
Last synced: 8 months ago

Dependencies

pom.xml maven
  • 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
.github/workflows/maven.yml actions
  • actions/checkout v3 composite
  • actions/setup-java v3 composite