forked from openMF/ph-ee-connector-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (62 loc) · 1.94 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'eclipse'
id 'maven'
id 'maven-publish'
id "com.jfrog.artifactory" version "4.24.23"
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2')
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-autoconfigure:2.2.2.RELEASE'
implementation 'com.auth0:java-jwt:3.10.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.10.1'
implementation 'org.json:json:20190722'
implementation 'org.apache.camel:camel-core:3.4.0'
//Open Source repositories should not link to private repositories
//implementation 'com.interop.ilp.conditions:interop-ilp-conditions:1.3'
testImplementation 'org.springframework:spring-web:5.2.2.RELEASE'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.2.2.RELEASE'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
compileOnly 'org.hibernate.validator:hibernate-validator:6.0.20.Final'
}
group = 'org.mifos'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = '1.8'
def artifactId = projectDir.name
def versionNumber = version
publishing {
publications {
mavenJava(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
artifactory {
contextUrl = 'https://fynarfin.jfrog.io/artifactory' // base artifactory url
publish {
repository {
repoKey = 'fyn-libs-snapshot' // Artifactory repository key to publish to
username = '[email protected]' // publisher user name
password = '****' // publisher password
maven = true
}
defaults {
publications ('mavenJava')
}
}
}
artifactoryPublish {
dependsOn jar
}