Skip to content

Commit 5ee7a76

Browse files
authored
Merge pull request #14 from DataDog/chris.agocs/compile_for_java_1.8
Chris.agocs/compile for java 1.8
2 parents 1f961c9 + ea42f0f commit 5ee7a76

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Include the following dependency in your `pom.xml`
3333
<dependency>
3434
<groupId>com.datadoghq</groupId>
3535
<artifactId>datadog-lambda-java</artifactId>
36-
<version>0.0.3</version>
36+
<version>0.0.4</version>
3737
<type>pom</type>
3838
</dependency>
3939
```
@@ -48,7 +48,7 @@ repositories {
4848
}
4949
5050
dependencies {
51-
implementation 'com.datadoghq:datadog-lambda-java:0.0.3'
51+
implementation 'com.datadoghq:datadog-lambda-java:0.0.4'
5252
}
5353
```
5454

build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ dependencies {
3333
implementation 'org.jetbrains:annotations:15.0'
3434
}
3535

36+
sourceCompatibility = 1.8
37+
targetCompatibility = 1.8
38+
3639
group = 'com.datadoghq'
37-
version = '0.0.3'
40+
version = '0.0.4'
3841

3942
allprojects {
4043
repositories {
@@ -51,14 +54,14 @@ publishing {
5154
from components.java
5255
groupId 'com.datadoghq'
5356
artifactId 'datadog-lambda-java'
54-
version '0.0.3'
57+
version '0.0.4'
5558
}
5659
}
5760
}
5861

5962
bintray {
60-
user = System.getenv('BINTRAY_USER')
61-
key = System.getenv('BINTRAY_API_TOKEN')
63+
user = System.getenv('BINTRAY_USER')
64+
key = System.getenv('BINTRAY_API_TOKEN')
6265
publications = ['MyPublication']
6366
pkg {
6467
repo = 'datadog-maven'
@@ -67,9 +70,9 @@ bintray {
6770
licenses = ['Apache-2.0']
6871
vcsUrl = 'https://github.com/DataDog/datadog-lambda-java.git'
6972
version {
70-
name = '0.0.3'
73+
name = '0.0.4'
7174
desc = 'Datadog Lambda Java runtime library'
72-
vcsTag = '0.0.3'
75+
vcsTag = '0.0.4'
7376
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
7477
}
7578
}

0 commit comments

Comments
 (0)