@@ -135,7 +135,7 @@ sourceSets {
135135 property(' mod_name' , propertyString(' mod_name' ))
136136 property(' mod_version' , propertyString(' mod_version' ))
137137 property(' mod_description' , propertyString(' mod_description' ))
138- property(' mod_authors' , " ${ propertyStringList('mod_authors', ',').join(', ') } " )
138+ property(' mod_authors' , propertyStringList(' mod_authors' , ' ,' ). collect {it . strip()} . join(' ", " ' ) )
139139 property(' mod_credits' , propertyString(' mod_credits' ))
140140 property(' mod_url' , propertyString(' mod_url' ))
141141 property(' mod_update_json' , propertyString(' mod_update_json' ))
@@ -152,21 +152,21 @@ idea {
152152 project {
153153 settings {
154154 runConfigurations {
155- " 1. Build" (Gradle ) {
155+ ' 1. Build' (Gradle ) {
156156 taskNames = [" build" ]
157157 }
158- " 2. Run Client" (Gradle ) {
158+ ' 2. Run Client' (Gradle ) {
159159 taskNames = [" runClient" ]
160160 }
161- " 3. Run Server" (Gradle ) {
161+ ' 3. Run Server' (Gradle ) {
162162 taskNames = [" runServer" ]
163163 }
164164 }
165165 compiler. javac {
166166 afterEvaluate {
167- javacAdditionalOptions = " -encoding utf8"
167+ javacAdditionalOptions = ' -encoding utf8'
168168 moduleJavacAdditionalOptions = [
169- (project. name + " .main" ): tasks. compileJava. options. compilerArgs. collect { ' "' + it + ' "' }. join(' ' )
169+ (project. name + ' .main' ): tasks. compileJava. options. compilerArgs. collect { ' "' + it + ' "' }. join(' ' )
170170 ]
171171 }
172172 }
0 commit comments