build.gradle: Migrate from maven to maven-publish plugin

To publish to the local Maven repository, use `gradle publishToMavenLocal` rather than `gradle install`.
This commit is contained in:
Andreas Schildbach 2021-04-26 15:36:28 +02:00
parent 1d52427f2f
commit 8a775a37d8

View file

@ -1,7 +1,7 @@
plugins { plugins {
id 'java-library' id 'java-library'
id 'com.google.protobuf' id 'com.google.protobuf'
id 'maven' id 'maven-publish'
id 'eclipse' id 'eclipse'
} }