-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
32 lines (26 loc) · 967 Bytes
/
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
plugins {
id 'eu.xenit.docker-compose' version '5.3.2' apply false
id 'org.hidetake.swagger.generator' version '2.19.2' apply false
id 'eu.xenit.alfresco' version "1.1.0"
id 'be.vbgn.ci-detect' version '0.5.0'
}
subprojects {
group = 'eu.xenit.alfresco-actuators'
apply plugin: 'eu.xenit.alfresco'
def baseVersion = System.getenv("TAG_VERSION") ?: 'v1.0.0'
version = baseVersion[1..baseVersion.length() - 1]
repositories {
mavenCentral()
maven {
url 'https://artifacts.alfresco.com/nexus/content/repositories/public/'
}
maven {
url 'https://artifacts.alfresco.com/nexus/content/groups/private'
credentials {
username project.property('org.alfresco.maven.nexus.username')
password project.property('org.alfresco.maven.nexus.password')
}
}
}
apply from: "${rootProject.projectDir}/publish.gradle"
}