Browse Source

Swicth to webjars for static sample

pull/234/merge
Dave Syer 12 years ago
parent
commit
aded7435b5
  1. 10
      spring-boot-samples/spring-boot-sample-web-static/pom.xml
  2. 9
      spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/css/bootstrap-responsive.min.css
  3. 11
      spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/css/bootstrap.min.css
  4. BIN
      spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/img/glyphicons-halflings-white.png
  5. BIN
      spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/img/glyphicons-halflings.png
  6. 9
      spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/index.html
  7. 6
      spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/js/bootstrap.min.js
  8. 6
      spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/js/jquery.min.js

10
spring-boot-samples/spring-boot-sample-web-static/pom.xml

@ -33,6 +33,16 @@ @@ -33,6 +33,16 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>2.0.3-1</version>
</dependency>
</dependencies>
<build>
<plugins>

9
spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/css/bootstrap-responsive.min.css vendored

File diff suppressed because one or more lines are too long

11
spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/css/bootstrap.min.css vendored

File diff suppressed because one or more lines are too long

BIN
spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/img/glyphicons-halflings-white.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

BIN
spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/img/glyphicons-halflings.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

9
spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/index.html

@ -3,11 +3,12 @@ @@ -3,11 +3,12 @@
<head>
<title>Static</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="/js/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css" />
<script type="text/javascript" src="/webjars/jquery/2.0.3/jquery.min.js"></script>
<link rel="stylesheet" type="text/css"
href="/css/bootstrap-responsive.min.css" />
<script type="text/javascript" src="/js/bootstrap.min.js"></script>
href="/webjars/bootstrap/2.3.0/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css"
href="/webjars/bootstrap/2.3.0/css/bootstrap-responsive.min.css" />
<script type="text/javascript" src="/webjars/bootstrap/2.3.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="navbar">

6
spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/js/bootstrap.min.js vendored

File diff suppressed because one or more lines are too long

6
spring-boot-samples/spring-boot-sample-web-static/src/main/webapp/js/jquery.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save