Switch build.gradle from CRLF to LF line separators

This commit is contained in:
Ross Paffett 2021-01-17 16:54:46 -08:00
parent 28d6e8f345
commit 5c8a9761aa

View File

@ -1,86 +1,86 @@
buildscript { buildscript {
repositories { repositories {
maven { url = 'https://files.minecraftforge.net/maven' } maven { url = 'https://files.minecraftforge.net/maven' }
jcenter() jcenter()
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
} }
} }
apply plugin: 'net.minecraftforge.gradle' apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'maven-publish' apply plugin: 'maven-publish'
version = '1.16.4-1.0.0.0-beta1' version = '1.16.4-1.0.0.0-beta1'
group = 'com.rosspaffett.mattercraft' group = 'com.rosspaffett.mattercraft'
archivesBaseName = 'mattercraft' archivesBaseName = 'mattercraft'
// For Eclipse tasks // For Eclipse tasks
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
minecraft { minecraft {
mappings channel: 'snapshot', version: '20201028-1.16.3' mappings channel: 'snapshot', version: '20201028-1.16.3'
runs { runs {
client { client {
workingDirectory project.file('run') workingDirectory project.file('run')
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug' property 'forge.logging.console.level', 'debug'
mods { mods {
mattercraft { mattercraft {
source sourceSets.main source sourceSets.main
} }
} }
} }
server { server {
workingDirectory project.file('run') workingDirectory project.file('run')
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug' property 'forge.logging.console.level', 'debug'
mods { mods {
mattercraft { mattercraft {
source sourceSets.main source sourceSets.main
} }
} }
} }
data { data {
workingDirectory project.file('run') workingDirectory project.file('run')
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug' property 'forge.logging.console.level', 'debug'
args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/'), '--existing', args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/'), '--existing',
file('src/main/resources/') file('src/main/resources/')
mods { mods {
mattercraft { mattercraft {
source sourceSets.main source sourceSets.main
} }
} }
} }
} }
} }
dependencies { dependencies {
minecraft 'net.minecraftforge:forge:1.16.4-35.1.32' minecraft 'net.minecraftforge:forge:1.16.4-35.1.32'
implementation 'com.google.code.gson:gson:2.8.0' implementation 'com.google.code.gson:gson:2.8.0'
} }
jar { jar {
manifest { manifest {
attributes([ attributes([
'Implementation-Title': project.name, 'Implementation-Title': project.name,
'Implementation-Version': project.version 'Implementation-Version': project.version
]) ])
} }
} }
jar.finalizedBy('reobfJar') jar.finalizedBy('reobfJar')