Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
Merged
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: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
with:
distribution: 'temurin'
java-version: 17
- name: Setup Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.6
- name: Build and Verify
run: mvn clean verify
- name: Publish Nightly Update Site
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: DFA Example Models
Bundle-SymbolicName: org.dataflowanalysis.examplemodels
Bundle-Version: 3.0.0.qualifier
Bundle-Version: 4.0.0.qualifier
Require-Bundle: org.eclipse.core.runtime,
com.google.guava
Automatic-Module-Name: org.dataflowanalysis.examplemodels
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.dataflowanalysis.examplemodels.feature"
label="Example Models Feature"
version="3.0.0.qualifier"
version="4.0.0.qualifier"
plugin="org.palladiosimulator.branding"
license-feature="org.palladiosimulator.license.epl2"
license-feature-version="1.0.0">
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.dataflowanalysis.examplemodels</groupId>
<artifactId>parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<tycho.version>2.7.5</tycho.version>
<tycho.version>4.0.9</tycho.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down