Skip to content

Commit

Permalink
Fixed maven setup for MessageParserTest_PTest
Browse files Browse the repository at this point in the history
  • Loading branch information
tortmayr committed Aug 8, 2018
1 parent 4642dce commit 9dbdc5c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
<classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8" />
<classpathentry kind="con"
path="org.eclipse.pde.core.requiredPlugins">
<accessrules>
<accessrule kind="accessible"
pattern="org/eclipse/papyrus/uml/diagram/sequence/runtime/internal/**" />
</accessrules>
</classpathentry>
<classpathentry kind="src" path="src" />
<classpathentry kind="output" path="bin" />
</classpath>
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.13.0,4.0.0)",
org.eclipse.papyrus.infra.core.sashwindows.di,
org.eclipse.gef,
org.eclipse.gmf.runtime.emf.type.core,
org.eclipse.papyrus.infra.gmfdiag.common
org.eclipse.papyrus.infra.gmfdiag.common,
org.eclipse.papyrus.uml.diagram.common;bundle-version="[3.1.0,4.0.0)"
Bundle-Description: Tests of the core run-time APIs of the sequence diagram.
Export-Package: org.eclipse.papyrus.uml.diagram.sequence.runtime.tests.matchers;version="1.0.0"
2 changes: 2 additions & 0 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<configuration>
<useUIHarness>true</useUIHarness>
<includes>
<include>**/*_PTest.java</include>
<include>**/*UITest.java</include>
</includes>
<failIfNoTests>false</failIfNoTests>
Expand All @@ -52,6 +53,7 @@
</includes>
<excludes>
<exclude>**/*UITest.java</exclude>
<exclude>**/*_PTest.java</exclude>
</excludes>
<failIfNoTests>false</failIfNoTests>
<testFailureIgnore>false</testFailureIgnore>
Expand Down

0 comments on commit 9dbdc5c

Please sign in to comment.