Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev/1.6' into dev/1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
thecatcore committed Apr 4, 2024
2 parents 524aedf + 182973b commit 16383cf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ java {

gradlePlugin {
plugins {
babricLoom {
id = 'babric-loom'
babricLoomExtension {
id = 'babric-loom-extension'
implementationClass = 'babric.BabricLoomPlugin'
}
}
Expand All @@ -89,8 +89,8 @@ publishing {

// Manually crate the plugin marker for snapshot versions
snapshotPlugin(MavenPublication) { publication ->
groupId 'babric-loom'
artifactId 'babric-loom.gradle.plugin'
groupId 'babric-loom-extension'
artifactId 'babric-loom-extension.gradle.plugin'
version baseVersion + '-SNAPSHOT'

pom.withXml({
Expand All @@ -102,7 +102,7 @@ publishing {
Node groupId = dependency.appendChild(document.createElement('groupId'))
groupId.setTextContent('babric')
Node artifactId = dependency.appendChild(document.createElement('artifactId'))
artifactId.setTextContent('babric-loom')
artifactId.setTextContent('babric-loom-extension')
Node version = dependency.appendChild(document.createElement('version'))
version.setTextContent(baseVersion + '-SNAPSHOT')
})
Expand All @@ -119,4 +119,4 @@ publishing {
}
}
}
}
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = "babric-loom"
rootProject.name = "babric-loom-extension"

4 changes: 2 additions & 2 deletions test-mod/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'fabric-loom' version "1.6-SNAPSHOT"
id 'maven-publish'
id 'babric-loom'
id 'babric-loom-extension'
}

version = project.mod_version
Expand Down Expand Up @@ -79,4 +79,4 @@ publishing {
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
}

0 comments on commit 16383cf

Please sign in to comment.