File tree Expand file tree Collapse file tree
casper-application-infrastructure Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11plugins {
22 kotlin(Plugins .KOTLIN_JVM ) version PluginVersions .KOTLIN_VERSION
3- id(Plugins .KTLINT ). version(PluginVersions .KTLINT_VERSION )
4- id(Plugins .CASPER_CONVENTION ). version(PluginVersions . CASPER_CONVENTION_VERSION )
3+ id(Plugins .KTLINT ) version(PluginVersions .KTLINT_VERSION )
4+ id(Plugins .CASPER_CONVENTION ) version(Plugins . CASPER_CONVENTION )
55}
66
77allprojects {
88 group = Projects .GROUP
99}
1010
1111subprojects {
12- apply (plugin = " org.jetbrains.kotlin.jvm " )
12+ apply (plugin = Plugins . JETBRAINS_KOTLIN_JVM )
1313
1414 repositories {
1515 mavenCentral()
Original file line number Diff line number Diff line change @@ -5,7 +5,12 @@ object Dependencies {
55
66 // springframework
77 const val SPRING_BOOT_STARTER = " org.springframework.boot:spring-boot-starter"
8+ const val SPRING_BOOT_STARTER_WEB = " org.springframework.boot:spring-boot-starter-web"
89 const val SPRING_BOOT_STARTER_TEST = " org.springframework.boot:spring-boot-starter-test"
10+ const val SPRING_BOOT_STARTER_ACTUATOR = " org.springframework.boot:spring-boot-starter-actuator"
11+
12+ // jexl
13+ const val APACHE_COMMONS_JEXL = " org.apache.commons:commons-jexl3:${DependencyVersions .APACHE_COMMONS_JEXL_VERSION } "
914
1015 // junit
1116 const val JUNIT = " org.jetbrains.kotlin:kotlin-test-junit5"
Original file line number Diff line number Diff line change 11object DependencyVersions {
2+ // JEXL
3+ const val APACHE_COMMONS_JEXL_VERSION = " 3.5.0"
24}
Original file line number Diff line number Diff line change 11object Plugins {
22 const val KOTLIN_JVM = " jvm"
3+ const val JETBRAINS_KOTLIN_JVM = " org.jetbrains.kotlin.jvm"
34 const val KOTLIN_SPRING = " plugin.spring"
45 const val SPRING_BOOT = " org.springframework.boot"
56 const val SPRING_DEPENDENCY_MANAGEMENT = " io.spring.dependency-management"
Original file line number Diff line number Diff line change @@ -14,7 +14,11 @@ repositories {
1414
1515dependencies {
1616 implementation(Dependencies .SPRING_BOOT_STARTER )
17+ implementation(Dependencies .SPRING_BOOT_STARTER_WEB )
1718 implementation(Dependencies .SPRING_BOOT_STARTER_TEST )
19+ implementation(Dependencies .SPRING_BOOT_STARTER_ACTUATOR )
20+
21+ implementation(Dependencies .APACHE_COMMONS_JEXL )
1822
1923 implementation(Dependencies .KOTLIN_REFLECT )
2024 testImplementation(Dependencies .KOTLIN_TEST )
You can’t perform that action at this time.
0 commit comments