File tree Expand file tree Collapse file tree 5 files changed +34
-0
lines changed
Expand file tree Collapse file tree 5 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 2222 run : chmod +x gradlew
2323 - name : Build with Gradle
2424 run : ./gradlew build
25+ - name : Build with Java 8
26+ working-directory : ./java-8
27+ run : .././gradlew build
2528 - name : Upload a Build Artifact
2629 uses : actions/upload-artifact@v4
2730 with :
Original file line number Diff line number Diff line change 1+ .gradle
2+ build /
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1+ mavenArtifactId = msgraph-sdk-java-core
Original file line number Diff line number Diff line change 1+ rootProject. name = ' msgraph-sdk-java-core'
You can’t perform that action at this time.
0 commit comments