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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Include the following dependency in your `pom.xml`
<dependency>
<groupId>com.datadoghq</groupId>
<artifactId>datadog-lambda-java</artifactId>
<version>0.0.3</version>
<version>0.0.4</version>
<type>pom</type>
</dependency>
```
Expand All @@ -48,7 +48,7 @@ repositories {
}

dependencies {
implementation 'com.datadoghq:datadog-lambda-java:0.0.3'
implementation 'com.datadoghq:datadog-lambda-java:0.0.4'
}
```

Expand Down
15 changes: 9 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ dependencies {
implementation 'org.jetbrains:annotations:15.0'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

group = 'com.datadoghq'
version = '0.0.3'
version = '0.0.4'

allprojects {
repositories {
Expand All @@ -51,14 +54,14 @@ publishing {
from components.java
groupId 'com.datadoghq'
artifactId 'datadog-lambda-java'
version '0.0.3'
version '0.0.4'
}
}
}

bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_API_TOKEN')
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_API_TOKEN')
publications = ['MyPublication']
pkg {
repo = 'datadog-maven'
Expand All @@ -67,9 +70,9 @@ bintray {
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/DataDog/datadog-lambda-java.git'
version {
name = '0.0.3'
name = '0.0.4'
desc = 'Datadog Lambda Java runtime library'
vcsTag = '0.0.3'
vcsTag = '0.0.4'
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
}
}
Expand Down