Skip to content

Commit

Permalink
demo "optimizations"
Browse files Browse the repository at this point in the history
  • Loading branch information
mstahv committed Apr 25, 2014
1 parent 3a38e97 commit c36bdf8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
21 changes: 18 additions & 3 deletions diagram-builder-demo/pom.xml
Expand Up @@ -62,16 +62,30 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-server</artifactId>
<version>${vaadin.version}</version>
<exclusions>
<exclusion>
<artifactId>vaadin-sass-compiler</artifactId>
<groupId>com.vaadin</groupId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.vaadin.external.google</groupId>
</exclusion>
<exclusion>
<artifactId>flute</artifactId>
<groupId>com.vaadin.external.flute</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-push</artifactId>
<version>${vaadin.version}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-themes</artifactId>
<version>${vaadin.version}</version>
<groupId>org.peimari</groupId>
<artifactId>dawn</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down Expand Up @@ -146,6 +160,7 @@
<hostedWebapp>${basedir}/src/main/webapp/VAADIN/widgetsets</hostedWebapp>
<noServer>true</noServer>
<persistentunitcachedir>${basedir}/target/tmp/gwt-unitCache</persistentunitcachedir>
<deploy>target/gwtdirt</deploy>
<!-- <draftCompile>true</draftCompile>
<style>PRETTY</style>-->
<strict>true</strict>
Expand Down
Expand Up @@ -6,6 +6,7 @@
import com.fasterxml.jackson.databind.SerializationFeature;
import com.vaadin.annotations.JavaScript;
import com.vaadin.annotations.StyleSheet;
import com.vaadin.annotations.Theme;
import com.vaadin.annotations.Title;
import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.server.VaadinRequest;
Expand Down Expand Up @@ -33,6 +34,7 @@
@SuppressWarnings("serial")
@JavaScript("http://cdn.alloyui.com/2.5.0/aui/aui-min.js")
@StyleSheet("http://cdn.alloyui.com/2.5.0/aui-css/css/bootstrap.min.css")
@Theme("dawn")
public class DemoUI extends UI {

private DiagramBuilder diagramBuilder;
Expand Down
2 changes: 1 addition & 1 deletion diagram-builder-demo/src/main/resources/intro.md
@@ -1,4 +1,4 @@
### DiagramBuilder example
## DiagramBuilder example

This is a simple example/demo app for a Vaadin add-on that wraps [ALLOYUI's
Diagram Builder](http://alloyui.com/examples/diagram-builder/) as a server side Java component. Source code for the add-on and
Expand Down

0 comments on commit c36bdf8

Please sign in to comment.