Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Slack](https://img.shields.io/badge/slack-%23serverless-blueviolet?logo=slack)](https://datadoghq.slack.com/channels/serverless/)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/DataDog/datadog-lambda-java/blob/master/LICENSE)
![](https://github.com/DataDog/datadog-lambda-java/workflows/Test%20on%20Master%20branch/badge.svg)
![Bintray](https://img.shields.io/bintray/v/datadog/datadog-maven/datadog-lambda-java)

The Datadog Lambda Java Client Library for Java (8 and 11) enables [enhanced lambda metrics](https://docs.datadoghq.com/integrations/amazon_lambda/?tab=awsconsole#real-time-enhanced-lambda-metrics)
and [distributed tracing](https://docs.datadoghq.com/integrations/amazon_lambda/?tab=awsconsole#tracing-with-datadog-apm)
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

group = 'com.datadoghq'
version = '0.0.6'
version= '0.0.6'

allprojects {
repositories {
Expand All @@ -56,7 +56,7 @@ publishing {
from components.java
groupId 'com.datadoghq'
artifactId 'datadog-lambda-java'
version version
version project.version.toString()
}
}
}
Expand All @@ -72,14 +72,14 @@ bintray {
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/DataDog/datadog-lambda-java.git'
version {
name = version
name = project.version.toString()
desc = 'Datadog Lambda Java runtime library'
vcsTag = version
vcsTag = project.version.toString()
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
}
}
}

buildConfig {
buildConfigField('String', 'datadog_lambda_version', '"' + version + '"')
buildConfigField('String', 'datadog_lambda_version', '"' + project.version.toString() + '"')
}