перенос кода в подмодуль
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
apply plugin: 'java'
|
||||||
|
|
||||||
String getProperty1(String propertyName1, String propertyName2) {
|
String getProperty1(String propertyName1, String propertyName2) {
|
||||||
return (String) (project.hasProperty(propertyName1) ? project.property(propertyName1) : project.property(propertyName2))
|
return (String) (project.hasProperty(propertyName1) ? project.property(propertyName1) : project.property(propertyName2))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,14 +3,11 @@
|
|||||||
gradle run
|
gradle run
|
||||||
*/
|
*/
|
||||||
|
|
||||||
plugins {
|
|
||||||
id 'java'
|
|
||||||
id 'application'
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: rootDir.toPath().resolve('logic.gradle').toFile()
|
apply from: rootDir.toPath().resolve('logic.gradle').toFile()
|
||||||
apply from: rootDir.toPath().resolve('libs.gradle').toFile()
|
apply from: rootDir.toPath().resolve('libs.gradle').toFile()
|
||||||
|
|
||||||
|
apply plugin: 'application'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
annotationProcessor libs.lombok
|
annotationProcessor libs.lombok
|
||||||
compileOnly libs.lombok
|
compileOnly libs.lombok
|
||||||
3
server/gradle.properties
Normal file
3
server/gradle.properties
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# suppress inspection "UnusedProperty" for whole file
|
||||||
|
module.name=server
|
||||||
|
module.version=1.0-SNAPSHOT
|
||||||
Reference in New Issue
Block a user