-
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.
Merge pull request #47 from PalladioSimulator/feature_launch
Feature launch
- Loading branch information
Showing
35 changed files
with
4,167 additions
and
219 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ jobs: | |
Palladio-Analyzer-SimExp: | ||
uses: PalladioSimulator/Palladio-Build-ActionsPipeline/.github/workflows/[email protected] | ||
with: | ||
runner-label: ubuntu-latest | ||
use-display-output: true | ||
no-caching: true | ||
deploy-updatesite: 'releng/org.palladiosimulator.simexp.updatesite/target/repository' | ||
|
6 changes: 6 additions & 0 deletions
6
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/.classpath
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="output" path="target"/> | ||
</classpath> |
1 change: 1 addition & 0 deletions
1
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/.gitignore
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 @@ | ||
*.so |
40 changes: 40 additions & 0 deletions
40
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/.project
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,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.pde.ManifestBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.pde.SchemaBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>net.sf.eclipsecs.core.CheckstyleBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.m2e.core.maven2Builder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.m2e.core.maven2Nature</nature> | ||
<nature>org.eclipse.pde.PluginNature</nature> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
<nature>net.sf.eclipsecs.core.CheckstyleNature</nature> | ||
</natures> | ||
</projectDescription> |
2 changes: 2 additions & 0 deletions
2
...ator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/.settings/org.eclipse.core.resources.prefs
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,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding/<project>=UTF-8 |
8 changes: 8 additions & 0 deletions
8
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/META-INF/MANIFEST.MF
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,8 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Prism wrapper - linux | ||
Bundle-SymbolicName: org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64 | ||
Bundle-Version: 1.0.0.qualifier | ||
Fragment-Host: org.palladiosimulator.simexp.pcm.prism.wrapper | ||
Bundle-RequiredExecutionEnvironment: JavaSE-17 | ||
Eclipse-PlatformFilter: (& (osgi.os=linux)(osgi.ws=gtk)(osgi.arch=x86_64)) |
3 changes: 3 additions & 0 deletions
3
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/build.properties
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,3 @@ | ||
bin.includes = META-INF/,\ | ||
.,\ | ||
*.so |
72 changes: 72 additions & 0 deletions
72
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64/pom.xml
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,72 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.palladiosimulator.simexp</groupId> | ||
<artifactId>bundles</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>org.palladiosimulator.simexp.pcm.prism.wrapper.linux.gtk.x86_64</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<name>Prism wrapper - linux</name> | ||
|
||
<packaging>eclipse-plugin</packaging> | ||
|
||
<properties> | ||
<prism.architecture>linux64-x86</prism.architecture> | ||
<prism.file>prism-${prism.version}-${prism.architecture}</prism.file> | ||
<prism.url>https://www.prismmodelchecker.org/dl/${prism.file}.tar.gz</prism.url> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.googlecode.maven-download-plugin</groupId> | ||
<artifactId>download-maven-plugin</artifactId> | ||
<version>1.10.0</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>wget</goal> | ||
</goals> | ||
<configuration> | ||
<url>${prism.url}</url> | ||
<outputDirectory>${project.build.directory}</outputDirectory> | ||
<unpack>true</unpack> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.3.1</version> | ||
<executions> | ||
<execution> | ||
<id>copy-linux-shared_libraries</id> | ||
<phase>process-resources</phase> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.basedir}</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${project.build.directory}/${prism.file}/lib</directory> | ||
<includes> | ||
<include>*.so</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
</plugins> | ||
</build> | ||
</project> |
6 changes: 6 additions & 0 deletions
6
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64/.classpath
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | ||
<classpathentry kind="output" path="target/classes"/> | ||
</classpath> |
1 change: 1 addition & 0 deletions
1
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64/.gitignore
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 @@ | ||
*.dll |
40 changes: 40 additions & 0 deletions
40
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64/.project
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,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.pde.ManifestBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.pde.SchemaBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>net.sf.eclipsecs.core.CheckstyleBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.m2e.core.maven2Builder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.m2e.core.maven2Nature</nature> | ||
<nature>org.eclipse.pde.PluginNature</nature> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
<nature>net.sf.eclipsecs.core.CheckstyleNature</nature> | ||
</natures> | ||
</projectDescription> |
2 changes: 2 additions & 0 deletions
2
...or.simexp.pcm.prism.wrapper.win32.win32.x86_64/.settings/org.eclipse.core.resources.prefs
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,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding/<project>=UTF-8 |
8 changes: 8 additions & 0 deletions
8
...es/org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64/META-INF/MANIFEST.MF
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,8 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Prism wrapper - windows | ||
Bundle-SymbolicName: org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64 | ||
Bundle-Version: 1.0.0.qualifier | ||
Fragment-Host: org.palladiosimulator.simexp.pcm.prism.wrapper | ||
Bundle-RequiredExecutionEnvironment: JavaSE-17 | ||
Eclipse-PlatformFilter: (& (osgi.os=win32)(osgi.ws=win32)(osgi.arch=x86_64)) |
3 changes: 3 additions & 0 deletions
3
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64/build.properties
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,3 @@ | ||
bin.includes = META-INF/,\ | ||
.,\ | ||
*.dll |
79 changes: 79 additions & 0 deletions
79
bundles/org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64/pom.xml
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,79 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.palladiosimulator.simexp</groupId> | ||
<artifactId>bundles</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>org.palladiosimulator.simexp.pcm.prism.wrapper.win32.win32.x86_64</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<name>Prism wrapper - windows</name> | ||
|
||
<packaging>eclipse-plugin</packaging> | ||
|
||
<profiles> | ||
<profile> | ||
<id>disable-build-if-no-prism</id> | ||
<activation> | ||
<property> | ||
<name>!env.PRISM</name> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-packaging-plugin</artifactId> | ||
<version>${tycho.version}</version> | ||
<configuration> | ||
<strictBinIncludes>false</strictBinIncludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
|
||
<profile> | ||
<id>copy-libs-prism</id> | ||
<activation> | ||
<property> | ||
<name>env.PRISM</name> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.3.1</version> | ||
<executions> | ||
<execution> | ||
<id>copy-windows-shared_libraries</id> | ||
<phase>prepare-package</phase> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.basedir}</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${env.PRISM}/lib</directory> | ||
<includes> | ||
<include>*.dll</include> | ||
</includes> | ||
<filtering>false</filtering> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
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
Oops, something went wrong.