Skip to content

Instantly share code, notes, and snippets.

@kolorobot
kolorobot / build.gradle
Last active December 21, 2017 16:27
Spring Boot with overridden Spring Version (with dependency management)
buildscript {
ext {
springBootVersion = '1.2.5.RELEASE'
}
ext['spring.version'] = '4.2.1.RELEASE'
repositories {
mavenCentral()
}
@kolorobot
kolorobot / build.gradle
Created September 3, 2015 22:05
Spring Boot with overridden Spring Version (without dependency management)
buildscript {
ext {
springBootVersion = '1.2.5.RELEASE'
springVersion = '4.2.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
@kolorobot
kolorobot / angular.html
Last active October 9, 2018 06:02
Complete AngularJS Starter with pre-defined CDN paths
<!DOCTYPE html>
<html lang="en" ng-app="demoApp">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="description" content=""/>
<meta name="author" content=""/>
<title>Starter Template for Bootstrap</title>
<!-- Bootstrap Core CSS -->
@kolorobot
kolorobot / bootstrap.html
Last active January 18, 2021 21:15
Complete Bootstrap Starter Template with pre-defined CDN paths
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="description" content=""/>
<meta name="author" content=""/>