Skip to content

Commit

Permalink
Add maven metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Mar 3, 2024
1 parent d7eda8d commit 09cc49b
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,45 @@ publishing {
}
}
}

pom {
description = 'Fabric Mixin is a trait/mixin and bytecode weaving framework for Java using ASM.'
url = 'https://github.com/FabricMC/Mixin'

scm {
connection = "scm:git:https://github.com/FabricMC/Mixin.git"
developerConnection = "scm:git:git@github.com:FabricMC/Mixin.git"
url = "https://github.com/FabricMC/Mixin"
}

issueManagement {
system = "GitHub"
url = "https://github.com/FabricMC/Mixin/issues"
}

licenses {
license {
name = 'The MIT License'
url = 'https://raw.githubusercontent.com/FabricMC/Mixin/main/LICENSE.txt'
}
}

developers {
// Et. al. that arent in the fabric org on maven central

developer {
id = "modmuss50"
name = "modmuss50"
email = "modmuss50@fabricmc.net"
}

developer {
id = "sfPlayer"
name = "Player"
email = "player@fabricmc.net"
}
}
}
}
}

Expand Down

0 comments on commit 09cc49b

Please sign in to comment.