Skip to content

Commit 1c6fc77

Browse files
committed
Add Java 8 sub project
1 parent 4625bb0 commit 1c6fc77

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

java-8/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.gradle
2+
build/

java-8/build.gradle

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
plugins {
2+
// Apply the java-library plugin to add support for Java Library
3+
id 'java-library'
4+
id 'eclipse'
5+
}
6+
7+
repositories {
8+
mavenCentral()
9+
}
10+
11+
sourceSets {
12+
main {
13+
java {
14+
srcDirs = ['../src']
15+
exclude 'test/**'
16+
}
17+
}
18+
}
19+
20+
java {
21+
toolchain {
22+
languageVersion = JavaLanguageVersion.of(8)
23+
}
24+
withSourcesJar()
25+
}
26+
27+
apply from: "../gradle/dependencies.gradle"

java-8/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mavenArtifactId = msgraph-sdk-java-core

java-8/settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'msgraph-sdk-java-core'

0 commit comments

Comments
 (0)