Publishing a JAR to S3: Revision history

From Rest of What I Know

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

16 April 2024

12 March 2024

  • curprev 01:1901:19, 12 March 2024Roshan talk contribs 3,541 bytes +1,093 No edit summary cin gbere le
  • curprev 01:1501:15, 12 March 2024Roshan talk contribs 2,448 bytes +2,448 Created page with "I couldn't find a single source of how to publish a JAR to S3. Here's an example of as minimal as I can imagine. You'll need a <code>build.gradle</code> that looks like this: <syntaxhighlight lang="groovy"> apply plugin: 'java' apply plugin: 'maven-publish' sourceCompatibility = 1.8 targetCompatibility = 1.8 group = 'dev.roshangeorge.my_package' version = '1.0' repositories { mavenCentral() } dependencies { implementation 'com.google.protobuf:protobuf-java:3..."