Skip to content

Commit 0261ce8

Browse files
committed
Update some Variables because of name change
1 parent d9b8d7c commit 0261ce8

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ apply plugin: 'eclipse'
1313
apply plugin: 'maven-publish'
1414

1515
version = '1.0'
16-
group = 'com.redcrafter07.ultrautilities' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
17-
archivesBaseName = 'ultrautilities'
16+
group = 'com.redcrafter07.processed' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
17+
archivesBaseName = 'processed'
1818

1919
java.toolchain.languageVersion = JavaLanguageVersion.of(8) // Mojang ships Java 8 to end users, so your mod should target Java 8.
2020

@@ -55,7 +55,7 @@ minecraft {
5555
property 'forge.logging.console.level', 'debug'
5656

5757
mods {
58-
ultrautilities {
58+
processed {
5959
source sourceSets.main
6060
}
6161
}
@@ -77,7 +77,7 @@ minecraft {
7777
property 'forge.logging.console.level', 'debug'
7878

7979
mods {
80-
ultrautilities {
80+
processed {
8181
source sourceSets.main
8282
}
8383
}
@@ -99,10 +99,10 @@ minecraft {
9999
property 'forge.logging.console.level', 'debug'
100100

101101
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
102-
args '--mod', 'ultrautilities', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
102+
args '--mod', 'processed', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
103103

104104
mods {
105-
ultrautilities {
105+
processed {
106106
source sourceSets.main
107107
}
108108
}
@@ -143,7 +143,7 @@ dependencies {
143143
jar {
144144
manifest {
145145
attributes([
146-
"Specification-Title": "ultrautilities",
146+
"Specification-Title": "processed",
147147
"Specification-Vendor": "RedCrafter07",
148148
"Specification-Version": "1", // We are version 1 of ourselves
149149
"Implementation-Title": project.name,

0 commit comments

Comments
 (0)