File tree Expand file tree Collapse file tree 3 files changed +22
-7
lines changed
Expand file tree Collapse file tree 3 files changed +22
-7
lines changed Original file line number Diff line number Diff line change 1717 - name : Add execution right to the script
1818 run : chmod +x gradlew
1919 working-directory : ./typesummary
20- - name : Build SDK
21- run : ./gradlew --no-daemon build
2220 - name : Build and run type summary project
2321 run : ./gradlew --no-daemon run --args='-o ${{ github.workspace }}/typeSummary.txt'
2422 working-directory : ./typesummary
Original file line number Diff line number Diff line change @@ -14,21 +14,35 @@ plugins {
1414repositories {
1515 // Use JCenter for resolving dependencies.
1616 jcenter()
17- flatDir {
18- dirs ' ../../build/libs'
17+ }
18+
19+ sourceSets {
20+ main {
21+ java {
22+ srcDirs ' src'
23+ srcDirs ' ../../src/main'
24+ }
1925 }
26+
27+
2028}
2129
22- dependencies {
30+ compileJava {
31+ options. compilerArgs << " -parameters"
32+ }
33+
34+ dependencies { // TODO replace by reference to dependencies.gradle in v3
2335 // Use JUnit test framework.
2436 testImplementation ' junit:junit:4.13'
2537
2638 // This dependency is used by the application.
2739 implementation ' com.google.guava:guava:29.0-jre'
2840
29- implementation ' com.microsoft.graph:microsoft-graph-core:1.0.5 '
41+ implementation ' com.google.code.gson:gson:2.8.6 '
3042
31- implementation name : ' msgraph-sdk-java'
43+ implementation ' com.squareup.okhttp3:okhttp:3.12.1'
44+
45+ implementation ' com.microsoft.graph:microsoft-graph-core:1.0.5'
3246}
3347
3448application {
Original file line number Diff line number Diff line change 1+ org.gradle.jvmargs =-XX:MaxPermSize =512m -Xmx2g
2+ org.gradle.parallel =true
3+ org.gradle.caching =true
You can’t perform that action at this time.
0 commit comments