-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
84 lines (71 loc) · 1.86 KB
/
build.gradle
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
73
74
75
76
77
78
79
80
81
82
83
84
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.13'
id 'io.spring.dependency-management' version '1.1.5'
id 'maven-publish'
id 'java-library'
}
def build = '14'
group = 'rjojjr.com.github'
//version = "1.1.2.$build-SNAPSHOT"
version = "1.1.2-RELEASE"
sourceCompatibility = '17'
repositories {
mavenCentral()
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
dependencies {
// TODO - Add separate client build job that doesn't carry all this DB code bloat(?)
api 'org.springframework.boot:spring-boot-starter-data-jpa'
api 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
runtimeOnly 'com.mysql:mysql-connector-j'
}
java {
withSourcesJar()
}
publish {
dependsOn assemble
}
jar {
enabled = true
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:3.0.13")
}
}
publishing {
repositories {
maven {
credentials {
username project.properties['username']
password project.properties['password']
}
// change to point to your repo, e.g. http://my.org/repo
url = 'http://192.168.1.149:8091/snapshots'
allowInsecureProtocol = true
}
}
publications {
mavenPublish(MavenPublication) {
versionMapping {
usage('java-api') {
fromResolutionOf('runtimeClasspath')
}
usage('java-runtime') {
fromResolutionResult()
}
}
groupId = 'rjojjr.com.github'
artifactId = 'tasks-lock-api'
version = version
from components.java
}
}
}