04-01-2013 03:41 PM
<repositories>
<repository>
<id>Alfresco Maven Repository</id>
<url>https://maven.alfresco.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-engine</artifactId>
<version>5.12</version>
</dependency>
</dependencies>
package com.example.testingvaadin;
import org.activiti.engine.*;
import com.vaadin.server.VaadinRequest;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Label;
import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout;
/**
* Main UI class
*/
@SuppressWarnings("serial")
public class TestingvaadinUI extends UI {
@Override
protected void init(VaadinRequest request) {
ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
final VerticalLayout layout = new VerticalLayout();
layout.setMargin(true);
setContent(layout);
Button button = new Button("Hello");
button.addClickListener(new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
layout.addComponent(new Label("Thank you for clicking"));
}
});
layout.addComponent(button);
}
}
java.lang.NoClassDefFoundError: org/activiti/engine/ProcessEngines
04-02-2013 03:40 AM
I am trying to get Activiti and Vaadin working together so I can "play" with the two with some simple code and learn.The separate way would be a better way (imho), because a lot of things to be investigate and to study
I have added the following dependencies to Maven:
….
I am getting the following error:java.lang.NoClassDefFoundError: org/activiti/engine/ProcessEngines
the jars activiti-engine-5.12.jar and a couple of bpmn jars are in the Maven Dependencies path.
This is probably a java beginner issue but what is wrong here?
Vaadin 7 changes the basic architecture of Vaadin applications significantly, more than it did in th...
04-02-2013 09:10 PM
04-03-2013 12:49 AM
Thanks udoderk:That is ok, but how to you start that web application? How to you deploy it to web container? Like written
What I finally did was create a Vaadin project with the wizard and a Activiti project with a wizard. I thin wet up the dependencies for Activiti in the Vaadin project using Ivy.
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.