Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
#104 disabled soot proprietary nexus to only use maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
sdibernardo committed Mar 10, 2019
1 parent b4ad6ed commit 891b2ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -188,7 +188,7 @@
<dependency>
<groupId>ca.mcgill.sable</groupId>
<artifactId>soot</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<exclusions>
<exclusion>
<groupId>ca.mcgill.sable</groupId>
Expand Down Expand Up @@ -392,10 +392,10 @@
<name>Maven repository of the Software Engineering Group at University of Paderborn</name>
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-release</url>
<releases>
<enabled>true</enabled>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
Expand Down
Expand Up @@ -92,7 +92,7 @@ public void testInputTypeText() throws IOException, SAXException, ParserConfigur
scanner.scanProcessVariables();

final JavaReaderContext jvc = new JavaReaderContext();
jvc.setJavaReadingStrategy(new JavaReaderRegex());
jvc.setJavaReadingStrategy(new JavaReaderStatic());

// parse bpmn model
final BpmnModelInstance modelInstance = Bpmn.readModelFromFile(processDefinition);
Expand Down Expand Up @@ -130,7 +130,7 @@ public void testInputTypeList() throws IOException, SAXException, ParserConfigur
scanner.scanProcessVariables();

final JavaReaderContext jvc = new JavaReaderContext();
jvc.setJavaReadingStrategy(new JavaReaderRegex());
jvc.setJavaReadingStrategy(new JavaReaderStatic());

// parse bpmn model
final BpmnModelInstance modelInstance = Bpmn.readModelFromFile(processDefinition);
Expand Down Expand Up @@ -168,7 +168,7 @@ public void testInputTypeMap() throws IOException, SAXException, ParserConfigura
scanner.scanProcessVariables();

final JavaReaderContext jvc = new JavaReaderContext();
jvc.setJavaReadingStrategy(new JavaReaderRegex());
jvc.setJavaReadingStrategy(new JavaReaderStatic());

// parse bpmn model
final BpmnModelInstance modelInstance = Bpmn.readModelFromFile(processDefinition);
Expand Down Expand Up @@ -206,7 +206,7 @@ public void testOutputTypeText() throws IOException, SAXException, ParserConfigu
scanner.scanProcessVariables();

final JavaReaderContext jvc = new JavaReaderContext();
jvc.setJavaReadingStrategy(new JavaReaderRegex());
jvc.setJavaReadingStrategy(new JavaReaderStatic());

// parse bpmn model
final BpmnModelInstance modelInstance = Bpmn.readModelFromFile(processDefinition);
Expand Down Expand Up @@ -244,7 +244,7 @@ public void testOutputTypeList() throws IOException, SAXException, ParserConfigu
scanner.scanProcessVariables();

final JavaReaderContext jvc = new JavaReaderContext();
jvc.setJavaReadingStrategy(new JavaReaderRegex());
jvc.setJavaReadingStrategy(new JavaReaderStatic());

// parse bpmn model
final BpmnModelInstance modelInstance = Bpmn.readModelFromFile(processDefinition);
Expand Down Expand Up @@ -282,7 +282,7 @@ public void testOutputTypeMap() throws IOException, SAXException, ParserConfigur
scanner.scanProcessVariables();

final JavaReaderContext jvc = new JavaReaderContext();
jvc.setJavaReadingStrategy(new JavaReaderRegex());
jvc.setJavaReadingStrategy(new JavaReaderStatic());

// parse bpmn model
final BpmnModelInstance modelInstance = Bpmn.readModelFromFile(processDefinition);
Expand Down
Expand Up @@ -180,9 +180,6 @@ public void testScriptInInputOutputMapping() throws IOException, SAXException, P

final Collection<CheckerIssue> issues = checker.check(element);

if (issues.size() != 0) {
Assert.fail("there should be generated an issue");
}
final String message = issues.iterator().next().getMessage();
Assert.assertTrue(message.startsWith("startup failed:"));
}
Expand Down

0 comments on commit 891b2ac

Please sign in to comment.