Skip to content

Commit

Permalink
removed imported dependency from Main Artemis Project
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Thurner committed Apr 29, 2024
1 parent 94008ef commit e58814c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ dependencies {
// ---- ANALYSIS OF ENDPOINT CONNECTION DEPENDENCIES ----

// Library for testing RESTful services
implementation 'com.thoughtworks.qdox:qdox:2.0-M9'
// implementation 'com.thoughtworks.qdox:qdox:2.0-M9'


// ---- TEST DEPENDENCIES ----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ repositories {
dependencies {
implementation 'com.thoughtworks.qdox:qdox:2.0-M9'
testImplementation 'junit:junit:4.13.2'

// Library for testing RESTful services
implementation 'com.thoughtworks.qdox:qdox:2.0-M9'
}

test {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,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(testArray).filter(filePath -> filePath.endsWith(".java")).toArray(String[]::new);
String[] serverFiles = Arrays.stream(args).filter(filePath -> filePath.endsWith(".java")).toArray(String[]::new);

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

0 comments on commit e58814c

Please sign in to comment.