What is the difference between `create` and `regis...
# gradle
a
What is the difference between
create
and
register
in this sytax?
Copy code
create<MavenPublication>("main") {
  // . . .
}

// and

register<MavenPublication>("main") {
  // . . .
}
g