Compare commits
No commits in common. "fe03d64122d10c386d162d679fb2534def12b2f2" and "d4635f82ae1b0074d3758bc14a326f4768e54f1f" have entirely different histories.
fe03d64122
...
d4635f82ae
6
pom.xml
6
pom.xml
@ -6,8 +6,8 @@
|
|||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.target>14</maven.compiler.target>
|
<maven.compiler.target>11</maven.compiler.target>
|
||||||
<maven.compiler.source>14</maven.compiler.source>
|
<maven.compiler.source>11</maven.compiler.source>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<kotlin.version>1.4.10</kotlin.version>
|
<kotlin.version>1.4.10</kotlin.version>
|
||||||
<kotlin.code.style>official</kotlin.code.style>
|
<kotlin.code.style>official</kotlin.code.style>
|
||||||
@ -142,7 +142,7 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<jvmTarget>14</jvmTarget>
|
<jvmTarget>11</jvmTarget>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@ -1,12 +1,10 @@
|
|||||||
package starter
|
package starter
|
||||||
|
|
||||||
import org.koin.core.context.startKoin
|
import org.koin.core.context.startKoin
|
||||||
import org.koin.core.context.unloadKoinModules
|
|
||||||
import starter.modules.*
|
import starter.modules.*
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
startKoin {
|
startKoin {
|
||||||
modules(mainModule, pebbleModule, templateModule, configModule, routesModule)
|
modules(mainModule, pebbleModule, templateModule, configModule, routesModule)
|
||||||
}
|
}
|
||||||
unloadKoinModules(configModule)
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user