-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
41 lines (39 loc) · 1.5 KB
/
settings.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
// ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
pluginManagement {
plugins {
id 'dev.medly.flatkt' version '0.0.9'
id 'dev.medly.kotlin' version '0.0.9'
id 'jacoco'
id 'org.jlleitschuh.gradle.ktlint' version '9.2.1'
id 'io.gitlab.arturbosch.detekt' version '1.20.0'
id 'dev.medly.repos' version '0.0.9'
id 'com.github.node-gradle.node' version '3.2.1'
}
repositories {
exclusiveContent {
forRepository {
maven {
name = "Medly Maven Repository"
url = "https://maven.pkg.github.com/medlypharmacy/maven-artifacts"
credentials {
if (System.getenv("CI")) {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("MEDLY_GPR_READ")
} else {
username = medlyGithubUsername
password = medlyGithubToken
}
}
}
}
filter {
includeGroupByRegex 'dev\\.medly\\.[\\w-]*' // plugin marker group id are plugin's names
includeGroup "dev.medly" // plugin artifact's group id
}
}
gradlePluginPortal();
}
}
rootProject.name = "kotlin-template"
include(':anagram-checker')
project(':anagram-checker').setBuildFileName('anagram-checker.gradle')