0

On my build server I'm planning on generating a JAR file from my proto spec. I'd like to ideally publish that jar to my nexus server so my Java projects can pull that dependency down like any other dependency. How should I structure that on the build server side?

James
  • 15,085
  • 25
  • 83
  • 120

1 Answers1

0

You haven't specified which build tool you're using.

One option is to upload the file using the Maven command-line:

A second option is to use the Nexus repository upload UI.

(In both cases the Maven module POM will be generated for you).

Community
  • 1
  • 1
Mark O'Connor
  • 76,015
  • 10
  • 139
  • 185