Skip to content

Commit 7490725

Browse files
authored
Merge pull request #514 from microsoftgraph/feature/pom-placeholder
feature/pom-placeholder
2 parents 23c0368 + 2cf4cb4 commit 7490725

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ hs_err_pid*
3131

3232
# Maven
3333
/target/
34-
/pom.xml
3534
local.properties

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ java {
2020
modularity.inferModulePath = true
2121
}
2222

23+
sourceSets {
24+
main {
25+
java {
26+
exclude 'pom.xml'
27+
}
28+
}
29+
}
30+
2331
// In this section you declare where to find the dependencies of your project
2432
repositories {
2533
// Use jcenter for resolving your dependencies.

pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<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>2.3.0</version>
12+
<packaging>pom</packaging>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>com.google.guava</groupId>
17+
<artifactId>guava</artifactId>
18+
<version>20.0</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>gson</artifactId>
28+
<version>3.12.1</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.microsoft.graph</groupId>
32+
<artifactId>microsoft-graph-core</artifactId>
33+
<version>1.0.5</version>
34+
</dependency>
35+
</dependencies>
36+
</project>

0 commit comments

Comments
 (0)