Skip to content

Commit

Permalink
Temporarily added fix to ignore assignments
Browse files Browse the repository at this point in the history
Updated lombok dependency
Updated Java dependency for Maven
  • Loading branch information
Asd2gogo committed Nov 29, 2021
1 parent 37beee6 commit 169f1b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ILIASDownloader-IliasConnector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.10</version>
<version>1.18.20</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ private void loadFileOrExercise(XmlObject f, boolean downloadAllowed, DownloadMe
}

if(f.isExercise()){
loadExercise(f, downloadAllowed, downloadMethod);
return;
//loadExercise(f, downloadAllowed, downloadMethod);
}
}

Expand Down
4 changes: 2 additions & 2 deletions ILIASDownloader-SwingFrontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
<version>2.3.2</version>
<configuration>
<!-- Java Version -->
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand Down
4 changes: 2 additions & 2 deletions ILIASDownloader-SyncRunner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand Down

0 comments on commit 169f1b7

Please sign in to comment.