-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
72 lines (52 loc) · 1.78 KB
/
Copy pathbuild.gradle
File metadata and controls
72 lines (52 loc) · 1.78 KB
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
72
buildscript {
repositories {
mavenLocal() {
metadataSources {
mavenPom()
artifact()
}
}
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.github.gradle-nexus:publish-plugin:2.0.0")
classpath("ca.cutterslade.gradle:gradle-dependency-analyze:1.9.0")
}
}
plugins {
id 'org.springframework.boot' version "${springBootVersion}"
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'maven-publish'
id "signing"
id "io.github.gradle-nexus.publish-plugin" version "2.0.0"
id 'groovy'
}
//apply plugin: "maven-publish"
//apply plugin: 'signing'
//apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply plugin: 'groovy'
// apply plugin: 'io.spring.dependency-management'
apply plugin: "ca.cutterslade.analyze"
//description = "The Beapi Springboot Starter for API Automation; automates and simplifies almost all API functionality and security"
bootJar {
enabled = false
}
group = "io.beapi"
//archivesBaseName = "spring-boot-starter-beapi"
version = "${version}"
sourceCompatibility = "${sourceCompatibility}"
repositories {
mavenCentral()
}
dependencies {
//implementation("org.springframework.boot:spring-boot-starter:${springBootVersion}"){
// exclude group:'org.springframework.boot', module:'spring-boot-starter-logging'
//}
// Gradle 4.6 and later
implementation "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
runtimeOnly 'org.slf4j:slf4j-api:1.7.15'
}