Skip to content

Instantly share code, notes, and snippets.

@jmewes
Created June 8, 2019 13:59
Show Gist options
  • Select an option

  • Save jmewes/00c80e56fabcf6f49c0c4d37b2cbc2af to your computer and use it in GitHub Desktop.

Select an option

Save jmewes/00c80e56fabcf6f49c0c4d37b2cbc2af to your computer and use it in GitHub Desktop.
[KSCH] Introduction of the "order-entry-web" module

(1) Create directories

mkdir order-entry
cd order-entry/
mkdir order-entry-web
cd order-entry-web/
mkdir -p src/main/java
mkdir -p src/test/java

(2) Add Gradle file

dependencies {
    compile "com.giffing.wicket.spring.boot.starter:wicket-spring-boot-starter:${wicketSpringBootStarterVersion}"
    compile "org.apache.wicket:wicket-spring:${wicketVersion}"
}

(3) Register project in settings.gradle

include("order-entry:order-entry-web")

(4) Refresh gradle project

https://pasteboard.co/IiteECN.png

(5) Add first component

https://pasteboard.co/IitdLcj.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment