diff options
author | axtloss <axtlos@getcryst.al> | 2023-05-24 00:40:33 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2023-05-24 00:40:33 +0200 |
commit | 732147566e83c1e160154b18c33618a36fac30e0 (patch) | |
tree | 9cc85d032db8396bbaa479af186c2be704a8efd3 /pom.xml | |
parent | 00b6b9f59e35d01abff7c6c4435c1ce4b30b766c (diff) | |
download | jshipit-732147566e83c1e160154b18c33618a36fac30e0.tar.gz jshipit-732147566e83c1e160154b18c33618a36fac30e0.tar.bz2 |
Add blob deduplication
Adds installed blobs to a database and skips downloading them if it finds them in the database
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -9,8 +9,8 @@ <version>1.0-SNAPSHOT</version> <properties> - <maven.compiler.source>20</maven.compiler.source> - <maven.compiler.target>20</maven.compiler.target> + <maven.compiler.source>17</maven.compiler.source> + <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> @@ -67,6 +67,12 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + </configuration> + </plugin> </plugins> </build> </project>
\ No newline at end of file |