Skip to content

Commit e32d594

Browse files
author
Valentin Popov
committed
min java version 8, version changed to 3.1.0
1 parent 046a70b commit e32d594

File tree

1 file changed

+38
-33
lines changed

1 file changed

+38
-33
lines changed

pom.xml

Lines changed: 38 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,41 @@
11
<project>
2-
<!--
3-
This package file is a place holder to enable the dependency graph https://github.com/microsoftgraph/msgraph-sdk-java/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</artifactId>
11-
<version>3.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/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.guava</groupId>
17-
<artifactId>guava</artifactId>
18-
<version>30.1-jre</version>
19-
</dependency>
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.squareup.okhttp3</groupId>
27-
<artifactId>okhttp</artifactId>
28-
<version>4.9.1</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>com.microsoft.graph</groupId>
32-
<artifactId>microsoft-graph-core</artifactId>
33-
<version>2.0.0</version>
34-
</dependency>
35-
</dependencies>
9+
<groupId>com.microsoft.graph</groupId>
10+
<artifactId>microsoft-graph</artifactId>
11+
<version>3.1.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.guava</groupId>
22+
<artifactId>guava</artifactId>
23+
<version>30.1-jre</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>com.google.code.gson</groupId>
27+
<artifactId>gson</artifactId>
28+
<version>2.8.6</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.microsoft.graph</groupId>
37+
<artifactId>microsoft-graph-core</artifactId>
38+
<version>2.0.0</version>
39+
</dependency>
40+
</dependencies>
3641
</project>

0 commit comments

Comments
 (0)