From d7e7885f51edb939f171c5c5bc1736233a5d1902 Mon Sep 17 00:00:00 2001 From: Thomas Behr Date: Tue, 6 Aug 2024 17:35:54 +0200 Subject: [PATCH] updated examples and properties for 4.1.1 --- docs/setup.md | 6 +++--- examples/annotation/build.gradle | 4 ++-- examples/annotation/build.xml | 2 +- examples/annotation/pom.xml | 4 ++-- examples/application/build.gradle | 2 +- examples/application/build.xml | 2 +- examples/application/pom.xml | 2 +- examples/external_library/build.gradle | 2 +- examples/external_library/build.xml | 2 +- examples/external_library/pom.xml | 2 +- examples/fxml/build.gradle | 2 +- examples/fxml/build.xml | 2 +- examples/fxml/pom.xml | 2 +- examples/library/build.gradle | 2 +- examples/library/build.xml | 2 +- examples/library/pom.xml | 2 +- examples/processing/build.gradle | 2 +- examples/processing/build.xml | 2 +- examples/processing/pom.xml | 2 +- examples/resources/build.gradle | 2 +- examples/resources/build.xml | 2 +- examples/resources/pom.xml | 2 +- examples/serializable_exclusion/build.gradle | 2 +- examples/serializable_exclusion/build.xml | 2 +- examples/serializable_exclusion/pom.xml | 2 +- gradle.properties | 2 +- 26 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docs/setup.md b/docs/setup.md index 2c9e169..83b9ac9 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -6,7 +6,7 @@ Depending on your build system, you will use [`AntRun`](http://maven.apache.org/ Download the bundle from the [Github release page](https://github.com/yWorks/yguard/releases/latest). After downloading and extracting the `jar` files, place them in a path near to your build script. You may use absolute paths, but our examples expect the jar file to lie in the same directory as your build file. Once extracted, you can use the `yguard` element like so: ```xml - + @@ -23,7 +23,7 @@ You can use `yGuard` directly from `Maven` central. Add the `yGuard` dependency com.yworks yguard - 4.1.0 + 4.1.1 compile ``` @@ -64,7 +64,7 @@ repositories { } dependencies { - compileOnly 'com.yworks:yguard:4.1.0' + compileOnly 'com.yworks:yguard:4.1.1' } task yguard { diff --git a/examples/annotation/build.gradle b/examples/annotation/build.gradle index d29363d..a84a919 100644 --- a/examples/annotation/build.gradle +++ b/examples/annotation/build.gradle @@ -11,8 +11,8 @@ configurations { } dependencies { - yguard 'com.yworks:yguard:4.1.0' - compile 'com.yworks:annotation:4.1.0' + yguard 'com.yworks:yguard:4.1.1' + compile 'com.yworks:annotation:4.1.1' } task obfuscate { diff --git a/examples/annotation/build.xml b/examples/annotation/build.xml index fe5c5d1..50a694e 100644 --- a/examples/annotation/build.xml +++ b/examples/annotation/build.xml @@ -2,7 +2,7 @@ - + diff --git a/examples/annotation/pom.xml b/examples/annotation/pom.xml index 8662e0b..0930cc1 100644 --- a/examples/annotation/pom.xml +++ b/examples/annotation/pom.xml @@ -16,13 +16,13 @@ com.yworks yguard - 4.1.0 + 4.1.1 compile com.yworks annotation - 4.1.0 + 4.1.1 diff --git a/examples/application/build.gradle b/examples/application/build.gradle index fa0b820..f86e2b2 100644 --- a/examples/application/build.gradle +++ b/examples/application/build.gradle @@ -23,7 +23,7 @@ configurations { } dependencies { - yguard 'com.yworks:yguard:4.1.0' + yguard 'com.yworks:yguard:4.1.1' } task obfuscate { diff --git a/examples/application/build.xml b/examples/application/build.xml index ada10b4..651d5d9 100644 --- a/examples/application/build.xml +++ b/examples/application/build.xml @@ -2,7 +2,7 @@ - + diff --git a/examples/application/pom.xml b/examples/application/pom.xml index 6fbc43f..c149241 100644 --- a/examples/application/pom.xml +++ b/examples/application/pom.xml @@ -16,7 +16,7 @@ com.yworks yguard - 4.1.0 + 4.1.1 compile diff --git a/examples/external_library/build.gradle b/examples/external_library/build.gradle index 537a9b0..83c3aa8 100644 --- a/examples/external_library/build.gradle +++ b/examples/external_library/build.gradle @@ -30,7 +30,7 @@ configurations { } dependencies { - yguard 'com.yworks:yguard:4.1.0' + yguard 'com.yworks:yguard:4.1.1' gson 'com.google.code.gson:gson:2.8.9' implementation configurations.gson.dependencies } diff --git a/examples/external_library/build.xml b/examples/external_library/build.xml index 637aa8b..6a53064 100644 --- a/examples/external_library/build.xml +++ b/examples/external_library/build.xml @@ -3,7 +3,7 @@ - + diff --git a/examples/external_library/pom.xml b/examples/external_library/pom.xml index 62506a5..b4a60e4 100644 --- a/examples/external_library/pom.xml +++ b/examples/external_library/pom.xml @@ -16,7 +16,7 @@ com.yworks yguard - 4.1.0 + 4.1.1 compile diff --git a/examples/fxml/build.gradle b/examples/fxml/build.gradle index ba55808..4aa93e4 100644 --- a/examples/fxml/build.gradle +++ b/examples/fxml/build.gradle @@ -33,7 +33,7 @@ configurations { } dependencies { - yguard 'com.yworks:yguard:4.1.0' + yguard 'com.yworks:yguard:4.1.1' } task obfuscate { diff --git a/examples/fxml/build.xml b/examples/fxml/build.xml index 19ba976..69080cf 100644 --- a/examples/fxml/build.xml +++ b/examples/fxml/build.xml @@ -2,7 +2,7 @@ - + diff --git a/examples/fxml/pom.xml b/examples/fxml/pom.xml index 69ca572..f774981 100644 --- a/examples/fxml/pom.xml +++ b/examples/fxml/pom.xml @@ -19,7 +19,7 @@ com.yworks yguard - 4.1.0 + 4.1.1 compile diff --git a/examples/library/build.gradle b/examples/library/build.gradle index 9ed53da..6e5d647 100644 --- a/examples/library/build.gradle +++ b/examples/library/build.gradle @@ -11,7 +11,7 @@ configurations { } dependencies { - yguard 'com.yworks:yguard:4.1.0' + yguard 'com.yworks:yguard:4.1.1' } task obfuscate { diff --git a/examples/library/build.xml b/examples/library/build.xml index dece583..318285c 100644 --- a/examples/library/build.xml +++ b/examples/library/build.xml @@ -2,7 +2,7 @@ - + diff --git a/examples/library/pom.xml b/examples/library/pom.xml index 19ba433..773bd65 100644 --- a/examples/library/pom.xml +++ b/examples/library/pom.xml @@ -17,7 +17,7 @@ com.yworks yguard - 4.1.0 + 4.1.1 compile diff --git a/examples/processing/build.gradle b/examples/processing/build.gradle index 9713a16..3ca974d 100644 --- a/examples/processing/build.gradle +++ b/examples/processing/build.gradle @@ -14,7 +14,7 @@ configurations { dependencies { implementation('org.springframework.boot:spring-boot-starter') - yguard 'com.yworks:yguard:4.1.0' + yguard 'com.yworks:yguard:4.1.1' } task obfuscate { diff --git a/examples/processing/build.xml b/examples/processing/build.xml index 41fcd86..2fcd01e 100644 --- a/examples/processing/build.xml +++ b/examples/processing/build.xml @@ -22,7 +22,7 @@ - + diff --git a/examples/processing/pom.xml b/examples/processing/pom.xml index 592a5c6..717cfd4 100644 --- a/examples/processing/pom.xml +++ b/examples/processing/pom.xml @@ -25,7 +25,7 @@ com.yworks yguard - 4.1.0 + 4.1.1