FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
mini_springboot/build.gradle at master · MiniSpringBootTutorial/mini_springboot · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
MiniSpringBootTutorial
/
mini_springboot
Public
Notifications
You must be signed in to change notification settings
Fork
16
Star
15
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
mini_springboot
/
build.gradle
Copy path
More file actions
More file actions
Latest commit
History
History
History
72 lines (57 loc) · 1.89 KB
Breadcrumbs
mini_springboot
/
build.gradle
Copy path
File metadata and controls
72 lines (57 loc) · 1.89 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version
=
"
0.0.1-SNAPSHOT
"
buildscript
{
ext {
springBootVersion
=
"
1.5.2.RELEASE
"
kotlinVersion
=
"
1.1.0
"
}
repositories {
mavenCentral()
}
dependencies {
classpath(
"
org.springframework.boot:spring-boot-gradle-plugin:
$s
pringBootVersion
"
)
classpath(
"
org.jetbrains.kotlin:kotlin-noarg:
$k
otlinVersion
"
)
classpath(
"
org.jetbrains.kotlin:kotlin-allopen:
$k
otlinVersion
"
)
classpath(
"
org.jetbrains.kotlin:kotlin-gradle-plugin:
$k
otlinVersion
"
)
}
}
apply
{
plugin(
"
kotlin
"
)
plugin(
"
kotlin-spring
"
)
plugin(
"
kotlin-jpa
"
)
plugin(
"
org.springframework.boot
"
)
plugin
'
java
'
plugin
'
eclipse
'
plugin
'
idea
'
//
plugin: 'spring-boot'
}
repositories
{
mavenCentral()
}
jar
{
baseName
=
'
mini_springboot
'
version
=
'
0.0.1
'
}
sourceCompatibility
=
1.8
targetCompatibility
=
1.8
dependencies
{
compile(
"
org.springframework.boot:spring-boot-starter-data-jpa
"
)
//
compile("com.h2database:h2")
compile(
"
org.jetbrains.kotlin:kotlin-stdlib:
$k
otlinVersion
"
)
compile(
"
org.jetbrains.kotlin:kotlin-reflect:
$k
otlinVersion
"
)
compile(
"
com.fasterxml.jackson.module:jackson-module-kotlin:2.8.4
"
)
testCompile(
"
org.springframework.boot:spring-boot-starter-test
"
)
compile(
"
org.springframework.boot:spring-boot-starter-web
"
) {
exclude
module
:
"
spring-boot-starter-tomcat
"
}
compile(
"
org.springframework.boot:spring-boot-starter-jetty
"
)
compile(
"
org.springframework.boot:spring-boot-starter-actuator
"
)
compile(
'
mysql:mysql-connector-java:5.1.13
'
)
testCompile(
"
junit:junit
"
)
//
thymeleaf
compile(
"
org.springframework.boot:spring-boot-starter-thymeleaf
"
)
//
WebJars
compile(
"
org.webjars:bootstrap:3.3.4
"
)
compile(
"
org.webjars:jquery:2.1.4
"
)
//
https://mvnrepository.com/artifact/org.webjars/datatables
compile
group
:
'
org.webjars
'
,
name
:
'
datatables
'
,
version
:
'
1.10.13
'
}
Back
|
FazBrowse Home
|
New Git URL