-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
113 additions
and
151 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
<dependency> | ||
<groupId>com.squareup.okhttp3</groupId> | ||
<artifactId>okhttp</artifactId> | ||
<version>4.9.3</version> | ||
<version>4.10.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-net</groupId> | ||
|
@@ -28,7 +28,7 @@ | |
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.10.0</version> | ||
<version>2.11.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.json</groupId> | ||
|
@@ -38,59 +38,47 @@ | |
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.9.0</version> | ||
<version>2.10</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/dnsjava/dnsjava --> | ||
<dependency> | ||
<groupId>dnsjava</groupId> | ||
<artifactId>dnsjava</artifactId> | ||
<version>3.5.1</version> | ||
<version>3.5.2</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.7.36</version> | ||
<version>2.0.5</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
<version>1.7.36</version> | ||
<version>2.0.5</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<properties> | ||
<app.mode>live</app.mode> | ||
<!-- Installer Filename without suffix --> | ||
<app.filename>${project.name}</app.filename> | ||
|
||
<!-- The JavaFX Application class name --> | ||
<app.mainClass>ch.luatan.DNSResolver.DNSResolver</app.mainClass> | ||
|
||
<!-- Optional override to specify where the cached files are stored. Default is current working directory --> | ||
<app.cacheDir>downloads</app.cacheDir> | ||
|
||
<!-- The Application vendor used by javapackager --> | ||
<app.vendor>Simon Schmid</app.vendor> | ||
|
||
<!-- The Application version used by javapackager --> | ||
<app.version>1.0</app.version> | ||
|
||
<!-- Base URL where you will host the application artifacts --> | ||
<app.url>https://update.dnsresolver.ch/v1/${app.mode}</app.url> | ||
|
||
<!-- Optional scp target for application artifacts hosted at the above url --> | ||
<app.deploy.target>[email protected]:/var/www/update.dnsresolver.ch/public_html/v1/${app.mode}</app.deploy.target> | ||
|
||
<app.deploy.target>[email protected]:/var/www/update.dnsresolver.ch/public_html/v1/${app.mode}</app.deploy.target> | ||
<!-- The app and launcher will be assembled in this folder --> | ||
<app.dir>${project.build.directory}/DNSResolver</app.dir> | ||
|
||
<!-- Native installers will be built in this folder --> | ||
<app.installerdir>${project.build.directory}/installer</app.installerdir> | ||
|
||
<!-- Should the client downgrade if the server version is older than the local version? --> | ||
<app.acceptDowngrade>true</app.acceptDowngrade> | ||
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<javafx.version>1</javafx.version> | ||
<javafx.maven.plugin.version>0.0.6</javafx.maven.plugin.version> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,5 @@ public interface Resolvable { | |
|
||
String validateDNSSEC(); | ||
|
||
void ignoreDNSSEC(); | ||
void useDNSSEC(boolean value); | ||
} |
Oops, something went wrong.