2014-03-06 10:31:40 +00:00
<!DOCTYPE html>
2013-08-19 21:45:54 +01:00
< html >
2013-06-06 08:40:10 +01:00
< head >
< title > Spring Initializr< / title >
< link rel = "stylesheet"
href="/css/bootstrap.min.css"/>
< / head >
< body >
< div class = "container" >
< div class = "navbar" >
< div class = "navbar-inner" >
< a class = "brand"
2014-03-08 17:00:59 +00:00
href="https://spring.io">
2013-06-06 08:40:10 +01:00
Spring
< / a >
< ul class = "nav" >
< li >
2014-05-30 14:07:05 +01:00
< a href = "/" title = "Download a template project or build file with some very basic content." >
2013-06-06 08:40:10 +01:00
Projects
< / a >
< / li >
< li >
2014-05-30 14:07:05 +01:00
< a href = "/spring.zip" title = "Download the spring CLI as a zip distribution (unpack and run bin/spring on a command line)." >
2013-08-05 11:12:53 +01:00
Download
2013-06-06 08:40:10 +01:00
< / a >
< / li >
2013-06-06 12:19:15 +01:00
< li >
2014-05-30 14:07:05 +01:00
< a href = "/install.sh" title = "Installer for the spring CLI command on Un*x-like system (should work on Linux, Mac or Cygwin). Curl this link and pipe to bash, or download the script and run it." >
2013-08-05 11:12:53 +01:00
Installer
2013-06-06 12:19:15 +01:00
< / a >
< / li >
2013-06-06 08:40:10 +01:00
< / ul >
< / div >
< / div >
< h1 > Spring Initializr< / h1 >
< div >
2013-11-01 14:39:56 +00:00
< form id = "form" action = "/starter.zip" method = "get" >
2013-06-06 08:40:10 +01:00
< label for = "groupId" > Group:< / label > < input id = "groupId" type = "text" value = "org.demo" name = "groupId" / >
< label for = "artifactId" > Artifact:< / label > < input id = "artifactId" type = "text" value = "demo" name = "artifactId" / >
< label for = "name" > Name:< / label > < input id = "name" type = "text" value = "demo" name = "name" / >
< label for = "name" > Description:< / label > < input id = "description" type = "text" value = "Demo project" name = "description" / >
< label for = "packageName" > Package Name:< / label > < input id = "packageName" type = "text" value = "demo" name = "packageName" / >
< label > Styles:< / label >
< % styles.each { %>
< label class = "checkbox" >
< input type = "checkbox" name = "style" value = "${it.value}" / >
${it.name}
< / label > < % } %>
< label > Type:< / label >
< % types.each { %>
< label class = "radio" >
2014-05-29 16:26:47 +01:00
< input type = "radio" name = "type" value = "${it.value}" $ { it . selected = =true ? ' checked = "true" ' : ' ' } onclick = "javascript:this.form.action='${it.action}'" / >
${it.name}
< / label > < % } %>
< label > Packaging:< / label >
< % packagings.each { %>
< label class = "radio" >
< input type = "radio" name = "packaging" value = "${it.value}" $ { it . selected = =true ? ' checked = "true" ' : ' ' } / >
2013-06-06 08:40:10 +01:00
${it.name}
< / label > < % } %>
2014-05-30 06:18:33 +01:00
< label > Java Version:< / label >
< % javaVersions.each { %>
< label class = "radio" >
2014-05-30 08:56:22 +01:00
< input type = "radio" name = "javaVersion" value = "${it.value}" $ { it . selected = =true ? ' checked = "true" ' : ' ' } / >
2014-05-30 06:18:33 +01:00
${it.value}
< / label > < % } %>
2014-05-30 09:50:24 +01:00
< label > Language:< / label >
< % languages.each { %>
< label class = "radio" >
< input type = "radio" name = "language" value = "${it.value}" $ { it . selected = =true ? ' checked = "true" ' : ' ' } / >
${it.name}
< / label > < % } %>
2014-06-24 09:42:54 +01:00
< label > Spring Boot Version:< / label >
< % bootVersions.each { %>
< label class = "radio" >
< input type = "radio" name = "bootVersion" value = "${it.value}" $ { it . selected = =true ? ' checked = "true" ' : ' ' } / >
2014-06-25 07:54:31 +01:00
${it.value}
2014-06-24 09:42:54 +01:00
< / label > < % } %>
2013-06-06 08:40:10 +01:00
< button type = "submit" class = "btn" > Generate< / button >
2013-08-19 21:45:54 +01:00
< / form >
2013-06-06 08:40:10 +01:00
< / div >
< / div >
< / body >
< / html >