Skip to content
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
11 changes: 8 additions & 3 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,15 @@ jobs:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Remove -snapshot from version
run: ./mvnw -B versions:set -DremoveSnapshot=true
# Keep the checkout unchanged and pass the non-SNAPSHOT revision to Maven
# explicitly, because versions:set updates project.version but leaves the
# revision property behind in this build.
- name: Resolve release version
run: |
release_version=$(sed -n 's:.*<revision>\(.*\)</revision>.*:\1:p' pom.xml | head -n 1 | sed 's/-SNAPSHOT$//')
echo "RELEASE_VERSION=${release_version}" >> "$GITHUB_ENV"
- name: Publish to Github Packages
run: ./mvnw -B deploy -DskipTests=true
run: ./mvnw -B clean deploy -DskipTests=true -Drevision=${{ env.RELEASE_VERSION }}
env:
GITHUB_TOKEN: ${{ github.token }} # GITHUB_TOKEN is the default env for the password
- name: Upload SysML Library .kpar files
Expand Down
2 changes: 1 addition & 1 deletion org.omg.kerml.expressions.xtext.ide/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.xtext.ide
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Vendor: SysML v2 Submission Team
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.expressions.xtext.ide; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.omg.kerml.expressions.xtext,
Expand Down
4 changes: 2 additions & 2 deletions org.omg.kerml.expressions.xtext.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.xtext.ui
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Vendor: SysML v2 Submission Team
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.expressions.xtext.ui; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.omg.kerml.expressions.xtext,
Expand All @@ -19,7 +19,7 @@ Require-Bundle: org.omg.kerml.expressions.xtext,
org.eclipse.xtext.builder,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.eclipse.xtend.lib;bundle-version="2.14.0";resolution:=optional,
org.omg.sysml;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.1",
org.eclipse.xtext.common.types.ui
Import-Package: org.apache.log4j
Export-Package: org.omg.kerml.expressions.xtext.ui.quickfix,
Expand Down
6 changes: 3 additions & 3 deletions org.omg.kerml.expressions.xtext/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Automatic-Module-Name: org.omg.kerml.expressions.xtext
Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.xtext
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.expressions.xtext; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.xtext,
Expand All @@ -13,8 +13,8 @@ Require-Bundle: org.eclipse.xtext,
org.eclipse.xtext.util,
org.eclipse.xtend.lib;bundle-version="2.14.0",
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
org.omg.sysml.model.bundle;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.0",
org.omg.sysml.model.bundle;bundle-version="0.60.1",
org.omg.sysml;bundle-version="0.60.1",
org.eclipse.uml2.uml,
org.eclipse.uml2.uml.resources,
org.eclipse.xtext.common.types,
Expand Down
2 changes: 1 addition & 1 deletion org.omg.kerml.owl.ide/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.owl.ide
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Vendor: My Company
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.owl.ide;singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.omg.kerml.owl,
Expand Down
2 changes: 1 addition & 1 deletion org.omg.kerml.owl.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.owl.ui
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Vendor: My Company
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.owl.ui;singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.omg.kerml.owl,
Expand Down
2 changes: 1 addition & 1 deletion org.omg.kerml.owl/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.sysml.owl
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Vendor: My Company
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.owl;singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.xtext,
Expand Down
10 changes: 5 additions & 5 deletions org.omg.kerml.xpect.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ Bundle-Name: org.omg.kerml.xpect.tests
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-SymbolicName: org.omg.kerml.xpect.tests;singleton:=true
Bundle-Vendor: SysML v2 Submission Team
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.xpect.xtext.lib;bundle-version="[0.3.0,0.4.0)",
org.eclipse.xpect.xtext.xbase.lib;bundle-version="[0.3.0,0.4.0)",
org.eclipse.emf.codegen;bundle-version="2.6.0",
org.eclipse.xtext.xbase;bundle-version="2.9.2",
org.eclipse.xtext.ui.shared;bundle-version="2.14.0",
org.omg.sysml;bundle-version="0.60.0",
org.omg.sysml.logic.bundle;bundle-version="0.60.0",
org.omg.kerml.xtext;bundle-version="0.60.0",
org.omg.kerml.xtext.ui;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.1",
org.omg.sysml.logic.bundle;bundle-version="0.60.1",
org.omg.kerml.xtext;bundle-version="0.60.1",
org.omg.kerml.xtext.ui;bundle-version="0.60.1",
org.aopalliance;bundle-version="1.0.0"
Bundle-ActivationPolicy: lazy
Export-Package: org.omg.kerml.xpect,
Expand Down
6 changes: 3 additions & 3 deletions org.omg.kerml.xtext.ide/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.xtext.ide
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Vendor: SysML v2 Submission Team
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.xtext.ide; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.omg.kerml.xtext,
org.eclipse.xtext.ide,
org.eclipse.xtend.lib,
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
org.omg.kerml.expressions.xtext;bundle-version="0.60.0",
org.omg.kerml.expressions.xtext.ide;bundle-version="0.60.0"
org.omg.kerml.expressions.xtext;bundle-version="0.60.1",
org.omg.kerml.expressions.xtext.ide;bundle-version="0.60.1"
Export-Package: org.omg.kerml.xtext.ide.contentassist.antlr
14 changes: 7 additions & 7 deletions org.omg.kerml.xtext.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.xtext.ui
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Vendor: SysML v2 Submission Team
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.xtext.ui; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.omg.kerml.xtext,
Expand All @@ -19,12 +19,12 @@ Require-Bundle: org.omg.kerml.xtext,
org.eclipse.xtext.builder,
org.eclipse.xtext.xbase.lib;bundle-version="2.14.0",
org.eclipse.xtend.lib;bundle-version="2.14.0";resolution:=optional,
org.omg.sysml.model.bundle;bundle-version="0.60.0",
org.omg.sysml.logic.bundle;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.0",
org.omg.kerml.expressions.xtext;bundle-version="0.60.0",
org.omg.kerml.expressions.xtext.ide;bundle-version="0.60.0",
org.omg.kerml.expressions.xtext.ui;bundle-version="0.60.0",
org.omg.sysml.model.bundle;bundle-version="0.60.1",
org.omg.sysml.logic.bundle;bundle-version="0.60.1",
org.omg.sysml;bundle-version="0.60.1",
org.omg.kerml.expressions.xtext;bundle-version="0.60.1",
org.omg.kerml.expressions.xtext.ide;bundle-version="0.60.1",
org.omg.kerml.expressions.xtext.ui;bundle-version="0.60.1",
org.eclipse.xtext.common.types.ui,
org.eclipse.emf.ecore.editor
Import-Package: org.apache.log4j
Expand Down
10 changes: 5 additions & 5 deletions org.omg.kerml.xtext/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Automatic-Module-Name: org.omg.kerml.xtext
Bundle-ManifestVersion: 2
Bundle-Name: org.omg.kerml.xtext
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-SymbolicName: org.omg.kerml.xtext; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.xtext,
Expand All @@ -13,12 +13,12 @@ Require-Bundle: org.eclipse.xtext,
org.eclipse.xtext.util,
org.eclipse.xtend.lib;bundle-version="2.14.0",
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
org.omg.sysml.model.bundle;bundle-version="0.60.0",
org.omg.sysml.logic.bundle;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.0",
org.omg.sysml.model.bundle;bundle-version="0.60.1",
org.omg.sysml.logic.bundle;bundle-version="0.60.1",
org.omg.sysml;bundle-version="0.60.1",
org.eclipse.uml2.uml,
org.eclipse.uml2.uml.resources,
org.omg.kerml.expressions.xtext;bundle-version="0.60.0",
org.omg.kerml.expressions.xtext;bundle-version="0.60.1",
com.google.gson,
org.eclipse.xtext.common.types,
org.objectweb.asm;bundle-version="9.3.0";resolution:=optional
Expand Down
4 changes: 2 additions & 2 deletions org.omg.sysml.edit/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.omg.sysml.edit;singleton:=true
Automatic-Module-Name: org.omg.sysml.edit
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-ClassPath: .
Bundle-Activator: org.omg.sysml.lang.sysml.provider.SysMLEditPlugin$Implementation
Bundle-Vendor: %providerName
Expand All @@ -13,5 +13,5 @@ Export-Package: org.omg.sysml.lang.sysml.provider
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.emf.edit;visibility:=reexport,
org.eclipse.uml2.common.edit;visibility:=reexport,
org.omg.sysml.model.bundle;bundle-version="0.60.0";visibility:=reexport
org.omg.sysml.model.bundle;bundle-version="0.60.1";visibility:=reexport
Bundle-ActivationPolicy: lazy
2 changes: 1 addition & 1 deletion org.omg.sysml.editor.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.omg.sysml.editor.feature"
label="SysML v2 XMI Editor Feature"
version="0.60.0.qualifier"
version="0.60.1.qualifier"
provider-name="SysML v2 Submission Team">

<description url="http://www.example.com/description">
Expand Down
2 changes: 1 addition & 1 deletion org.omg.sysml.editor/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.omg.sysml.editor;singleton:=true
Automatic-Module-Name: org.omg.sysml.editor
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Bundle-ClassPath: .
Bundle-Activator: org.omg.sysml.lang.sysml.presentation.SysMLEditorPlugin$Implementation
Bundle-Vendor: %providerName
Expand Down
8 changes: 4 additions & 4 deletions org.omg.sysml.execution/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.omg.sysml.execution;singleton:=true
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Automatic-Module-Name: org.omg.sysml.execution
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Name: org.omg.sysml.execution
Bundle-Vendor: SysML v2 Submission Team
Bundle-ActivationPolicy: lazy
Export-Package: org.omg.sysml.execution.expressions
Require-Bundle: org.omg.sysml.model.bundle;bundle-version="0.60.0",
org.omg.sysml.logic.bundle;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.0"
Require-Bundle: org.omg.sysml.model.bundle;bundle-version="0.60.1",
org.omg.sysml.logic.bundle;bundle-version="0.60.1",
org.omg.sysml;bundle-version="0.60.1"
2 changes: 1 addition & 1 deletion org.omg.sysml.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.omg.sysml.feature"
label="SysML v2 Feature"
version="0.60.0.qualifier"
version="0.60.1.qualifier"
provider-name="SysML v2 Submission Team">

<description url="http://www.example.com/description">
Expand Down
10 changes: 5 additions & 5 deletions org.omg.sysml.interactive.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Bundle-ManifestVersion: 2
Bundle-Name: Tests
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-SymbolicName: org.omg.sysml.interactive.tests;singleton:=true
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Automatic-Module-Name: org.omg.sysml.interactive.tests
Bundle-ActivationPolicy: lazy
Require-Bundle: org.omg.sysml.interactive;bundle-version="0.60.0",
Require-Bundle: org.omg.sysml.interactive;bundle-version="0.60.1",
org.junit;bundle-version="4.12.0",
org.omg.sysml.model.bundle;bundle-version="0.60.0",
org.omg.sysml.logic.bundle;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.0",
org.omg.sysml.model.bundle;bundle-version="0.60.1",
org.omg.sysml.logic.bundle;bundle-version="0.60.1",
org.omg.sysml;bundle-version="0.60.1",
org.eclipse.xtext;bundle-version="2.22.0"
14 changes: 7 additions & 7 deletions org.omg.sysml.interactive/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ Bundle-ManifestVersion: 2
Bundle-Name: org.omg.sysml.interactive
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-SymbolicName: org.omg.sysml.interactive
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Export-Package: org.omg.sysml.interactive
Require-Bundle: org.eclipse.emf.ecore,
com.google.inject,
org.eclipse.xtext,
org.omg.sysml.model.bundle;bundle-version="0.60.0",
org.omg.sysml.logic.bundle;bundle-version="0.60.0",
org.omg.sysml;bundle-version="0.60.0",
org.omg.sysml.execution;bundle-version="0.60.0",
org.omg.kerml.xtext;bundle-version="0.60.0",
org.omg.sysml.xtext;bundle-version="0.60.0",
org.omg.sysml.model.bundle;bundle-version="0.60.1",
org.omg.sysml.logic.bundle;bundle-version="0.60.1",
org.omg.sysml;bundle-version="0.60.1",
org.omg.sysml.execution;bundle-version="0.60.1",
org.omg.kerml.xtext;bundle-version="0.60.1",
org.omg.sysml.xtext;bundle-version="0.60.1",
com.google.gson;bundle-version="2.8.6",
org.eclipse.xtext.common.types
Import-Package: org.omg.sysml.plantuml
Expand Down
2 changes: 1 addition & 1 deletion org.omg.sysml.logic.bundle/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="lib" path="lib/org.omg.sysml.logic-0.60.0-SNAPSHOT.jar"/>
<classpathentry kind="lib" path="lib/org.omg.sysml.logic-0.60.1-SNAPSHOT.jar"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
org.eclipse.jdt.core.compiler.compliance=21
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=21
6 changes: 3 additions & 3 deletions org.omg.sysml.logic.bundle/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-21
Bundle-Version: 0.60.0.qualifier
Bundle-Version: 0.60.1.qualifier
Export-Package: org.omg.sysml.adapter,
org.omg.sysml.delegate.invocation,
org.omg.sysml.delegate.setting,
Expand All @@ -20,9 +20,9 @@ Export-Package: org.omg.sysml.adapter,
org.omg.sysml.util
Require-Bundle: org.eclipse.emf.common;bundle-version="2.44.0",
org.eclipse.emf.ecore;bundle-version="2.41.0",
org.omg.sysml.model.bundle;bundle-version="0.60.0"
org.omg.sysml.model.bundle;bundle-version="0.60.1"
Bundle-ClassPath: .,
lib/org.omg.sysml.logic-0.60.0-SNAPSHOT.jar
lib/org.omg.sysml.logic-0.60.1-SNAPSHOT.jar
Bundle-SymbolicName: org.omg.sysml.logic.bundle;singleton:=true
Bundle-ActivationPolicy: lazy
Automatic-Module-Name: org.omg.sysml.logic.bundle
4 changes: 2 additions & 2 deletions org.omg.sysml.logic.bundle/build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
bin.includes = META-INF/,\
plugin.properties,\
lib/org.omg.sysml.logic-0.60.0-SNAPSHOT.jar
jars.extra.classpath = lib/org.omg.sysml.logic-0.60.0-SNAPSHOT.jar
lib/org.omg.sysml.logic-0.60.1-SNAPSHOT.jar
jars.extra.classpath = lib/org.omg.sysml.logic-0.60.1-SNAPSHOT.jar
Binary file not shown.
Binary file not shown.
31 changes: 10 additions & 21 deletions org.omg.sysml.logic.bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,32 +38,21 @@
</plugin>
<!-- Copy org.omg.sysml.logic jar in lib/ before the Tycho build -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<artifactId>maven-antrun-plugin</artifactId>
<version>${maven-antrun-plugin.version}</version>
<executions>
<execution>
<id>copy-jar-org.omg.sysml.logic</id>
<phase>initialize</phase>
<goals>
<goal>copy-resources</goal>
<goal>run</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/lib</outputDirectory>
<resources>
<resource>
<directory>
${project.basedir}/../org.omg.sysml.logic/target</directory>
<includes>
<include>org.omg.sysml.logic-*.jar</include>
</includes>
<excludes>
<exclude>*-sources.jar</exclude>
<exclude>*-tests.jar</exclude>
</excludes>
<filtering>false</filtering>
</resource>
</resources>
<target>
<copy file="${project.basedir}/../org.omg.sysml.logic/target/org.omg.sysml.logic-${revision}.jar"
tofile="${project.basedir}/lib/org.omg.sysml.logic-${revision}.jar"
overwrite="true" />
</target>
</configuration>
</execution>
</executions>
Expand All @@ -87,10 +76,10 @@
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<artifactId>maven-antrun-plugin</artifactId>
<versionRange>[0,)</versionRange>
<goals>
<goal>copy-resources</goal>
<goal>run</goal>
</goals>
</pluginExecutionFilter>
<action>
Expand Down
Loading
Loading