Skip to content

Commit

Permalink
added spring boot dependency to build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Thurner committed Apr 30, 2024
1 parent d34d40f commit 04f2965
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ repositories {

dependencies {
implementation 'com.thoughtworks.qdox:qdox:2.0-M9'
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.4'
testImplementation 'junit:junit:4.13.2'
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
package analysisOfEndpointConnections;

import java.io.File;
import java.util.Arrays;
import java.util.Collection;
Expand All @@ -21,7 +19,7 @@ public static void main(String[] args) {
testArray[0] = "src/main/java/de/tum/in/www1/artemis/web/rest/tutorialgroups/TutorialGroupFreePeriodResource.java";
testArray[1] = "src/main/webapp/app/course/tutorial-groups/services/tutorial-group-free-period.service.ts";

String[] serverFiles = Arrays.stream(args).filter(filePath -> filePath.endsWith(".java")).toArray(String[]::new);
String[] serverFiles = Arrays.stream(testArray).filter(filePath -> filePath.endsWith(".java")).toArray(String[]::new);

analyzeServerEndpoints(serverFiles);
analyzeClientRESTCalls(testArray);
Expand Down

0 comments on commit 04f2965

Please sign in to comment.