Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-logging-servlet-initializer</artifactId>
<version>v0.2.13-alpha</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies

```Groovy
implementation 'com.google.cloud:google-cloud-logging-servlet-initializer'
implementation 'com.google.cloud:google-cloud-logging-servlet-initializer:0.2.13-alpha'
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this have the "v" prefix? i.e. v0.2.13-alpha

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the gradle supports adding the v prefix. It doesn't get strip out automatically.

https://repo1.maven.org/maven2/com/google/cloud/google-cloud-logging-servlet-initializer/0.2.13-alpha/google-cloud-logging-servlet-initializer-0.2.13-alpha.pom

Version should be 0.2.13-alpha

```

If you are using SBT, add this to your dependencies

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-logging-servlet-initializer"
libraryDependencies += "com.google.cloud" % "google-cloud-logging-servlet-initializer" % "0.2.13-alpha"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this have the "v" prefix? i.e. v0.2.13-alpha

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above. I think SBT is expecting "0.2.13-alpha"

```

## Getting Started
Expand Down
Loading