Skip to content

Commit

Permalink
Merge pull request #63 from mdanter/master
Browse files Browse the repository at this point in the history
Updated sample kjar location in services-base test codebase and maven
  • Loading branch information
mdanter committed Dec 11, 2013
2 parents 0b6af1d + bc8fd5d commit a80eae8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jbpm-ee-services/jbpm-ee-services-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
</dependency>
<dependency>
<groupId>org.jbpm.jbpm-ee</groupId>
<artifactId>jbpm-ee-test-kjar</artifactId>
<artifactId>jbpm-ee-kjar-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

public abstract class JBPMServiceTest extends BaseJBPMServiceTest {
private static final KieReleaseId kri = new KieReleaseId("com.redhat.demo", "testProj", "1.0-SNAPSHOT");
private static final KieReleaseId loanReleaseId = new KieReleaseId("org.jbpm.jbpm-ee", "jbpm-ee-test-kjar", "1.0.0-SNAPSHOT");
private static final KieReleaseId loanReleaseId = new KieReleaseId("org.jbpm.jbpm-ee", "jbpm-ee-kjar-sample", "1.0.0-SNAPSHOT");
private static final Logger LOG = LoggerFactory.getLogger(JBPMServiceTest.class);

public abstract TaskService getTaskService();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class WorkItemDefinitionLoadingTest {

@Test
public void testLoad() throws Exception {
KieReleaseId releaseId = new KieReleaseId("org.jbpm.jbpm-ee", "jbpm-ee-test-kjar", "1.0.0-SNAPSHOT");
KieReleaseId releaseId = new KieReleaseId("org.jbpm.jbpm-ee", "jbpm-ee-kjar-sample", "1.0.0-SNAPSHOT");
List<Map<String, Object>> map = WorkItemDefinitionUtil.loadWorkItemDefinitions(releaseId, "META-INF/WorkDefinitions.wid");

System.out.println(map);
Expand Down

0 comments on commit a80eae8

Please sign in to comment.