Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To use the release candidate, update your build.gradle to include the Apache Maven Staging Repository:

Code Block
 
repositories { 
  mavenCentral() 

  // For access to Apache Staging (Preview) packages 
  mavenRepo urls: "https://repository.apache.org/content/groups/staging" 
} 

Oh, are you still using Maven? My condolences; here you go:

Code Block
 
<repositories> 
  <repository> 
    <id>apache-staging</id> 
    <url>https://repository.apache.org/content/groups/staging/</url> 
  </repository> 

</repositories>