Skip to content

Commit

Permalink
Merge pull request #8 from FlowingCode/demo-source-left
Browse files Browse the repository at this point in the history
Move demo source to primary
  • Loading branch information
flang authored Dec 4, 2023
2 parents c29be3e + e5e7617 commit 99f6e00
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<drivers.dir>${project.basedir}/drivers</drivers.dir>
<jetty.version>11.0.12</jetty.version>
<flowingcode.commons.demo.version>3.7.1</flowingcode.commons.demo.version>
<flowingcode.commons.demo.version>3.10.0-SNAPSHOT</flowingcode.commons.demo.version>
<frontend.hotdeploy>true</frontend.hotdeploy>
</properties>

Expand Down Expand Up @@ -94,6 +94,11 @@
<id>flowing-releases</id>
<url>https://maven.flowingcode.com/releases</url>
</repository>

<repository>
<id>flowing-snapshots</id>
<url>https://maven.flowingcode.com/snapshots</url>
</repository>
</repositories>

<pluginRepositories>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
package com.flowingcode.vaadin.addons.chatassistant;

import com.flowingcode.vaadin.addons.demo.DemoSource;
import com.flowingcode.vaadin.addons.demo.SourcePosition;
import com.vaadin.flow.component.button.Button;
import com.vaadin.flow.component.dependency.CssImport;
import com.vaadin.flow.component.notification.Notification;
Expand All @@ -28,7 +29,7 @@
import com.vaadin.flow.router.PageTitle;
import com.vaadin.flow.router.Route;

@DemoSource
@DemoSource(sourcePosition = SourcePosition.PRIMARY)
@PageTitle("Chat Assistant Add-on Demo")
@SuppressWarnings("serial")
@Route(value = "chat-assistant/basic-demo", layout = ChatAssistantDemoView.class)
Expand Down

0 comments on commit 99f6e00

Please sign in to comment.