Skip to content

Commit 46f445c

Browse files
authored
Merge pull request #177 from valenpo/dev
java 8 min requirement
2 parents 76d0a7b + 5d840e3 commit 46f445c

File tree

1 file changed

+50
-33
lines changed

1 file changed

+50
-33
lines changed

pom.xml

Lines changed: 50 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,53 @@
11
<project>
2-
<!--
3-
This package file is a place holder to enable the dependency graph https://github.com/microsoftgraph/msgraph-sdk-java-core/network/dependencies
4-
as the dependency graph is not compatible with gradle https://docs.github.com/en/free-pro-team@latest/github/visualizing-repository-data-with-graphs/about-the-dependency-graph#supported-package-ecosystems
5-
build.gradle is the source of truth
6-
-->
7-
<modelVersion>4.0.0</modelVersion>
8-
9-
<groupId>com.microsoft.graph</groupId>
10-
<artifactId>microsoft-graph-core</artifactId>
11-
<version>2.0.0</version>
12-
<packaging>pom</packaging>
2+
<!--
3+
This package file is a place holder to enable the dependency graph https://github.com/microsoftgraph/msgraph-sdk-java-core/network/dependencies
4+
as the dependency graph is not compatible with gradle https://docs.github.com/en/free-pro-team@latest/github/visualizing-repository-data-with-graphs/about-the-dependency-graph#supported-package-ecosystems
5+
build.gradle is the source of truth
6+
-->
7+
<modelVersion>4.0.0</modelVersion>
138

14-
<dependencies>
15-
<dependency>
16-
<groupId>com.google.code.gson</groupId>
17-
<artifactId>gson</artifactId>
18-
<version>2.8.6</version>
19-
</dependency>
20-
<dependency>
21-
<groupId>com.google.guava</groupId>
22-
<artifactId>guava</artifactId>
23-
<version>30.1-jre</version>
24-
</dependency>
25-
<dependency>
26-
<groupId>com.squareup.okhttp3</groupId>
27-
<artifactId>gson</artifactId>
28-
<version>4.9.1</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>com.azure</groupId>
32-
<artifactId>azure-identity</artifactId>
33-
<version>1.2.0</version>
34-
</dependency>
35-
</dependencies>
9+
<groupId>com.microsoft.graph</groupId>
10+
<artifactId>microsoft-graph-core</artifactId>
11+
<version>2.0.0</version>
12+
<packaging>pom</packaging>
13+
14+
<properties>
15+
<maven.compiler.source>1.8</maven.compiler.source>
16+
<maven.compiler.target>1.8</maven.compiler.target>
17+
</properties>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>com.google.code.gson</groupId>
22+
<artifactId>gson</artifactId>
23+
<version>2.8.6</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>com.google.guava</groupId>
27+
<artifactId>guava</artifactId>
28+
<version>30.1-jre</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.squareup.okhttp3</groupId>
32+
<artifactId>okhttp</artifactId>
33+
<version>4.9.1</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.azure</groupId>
37+
<artifactId>azure-identity</artifactId>
38+
<version>1.2.0</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.junit.jupiter</groupId>
42+
<artifactId>junit-jupiter-api</artifactId>
43+
<version>5.5.2</version>
44+
<scope>test</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.mockito</groupId>
48+
<artifactId>mockito-core</artifactId>
49+
<version>3.8.0</version>
50+
<scope>test</scope>
51+
</dependency>
52+
</dependencies>
3653
</project>

0 commit comments

Comments
 (0)