You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Bump plugin versions
- Shadow plugin to 8.1.1
- plugin-publish to 1.2.1
* Bump test dependencies
- junit-jupiter to 2.10.1
- groovy-json to 3.0.19
- google-gson to 2.10.1
- json-schema-validator to 1.0.87
- jetbrains-annotations to 24.0.1
* Remove some unused code and implicit dependencies
* Remove unused httpclient dependency
* Bump commons-io to 2.13.0
* Asserts that this is a directory and contains exactly the given set of descendant files and child directories. Ignores directories that are not empty.
* Asserts that this is a directory and contains exactly the given set of descendant files and child directories. Ignores directories that are not empty.
* Asserts that this is a directory and contains the given set of descendant files and child directories (and possibly other files). Ignores directories that are not empty.
// public TestFile zipTo(TestFile zipFile, boolean readOnly) {
755
-
// new TestFileHelper(this).zipTo(zipFile, useNativeTools, readOnly);
756
-
// return this;
757
-
// }
758
-
//
759
-
// public TestFile tarTo(TestFile tarFile) {
760
-
// return tarTo(tarFile, false);
761
-
// }
762
-
//
763
-
// public TestFile tarTo(TestFile tarFile, boolean readOnly) {
764
-
// new TestFileHelper(this).tarTo(tarFile, useNativeTools, readOnly);
765
-
// return this;
766
-
// }
767
-
//
768
-
// public TestFile tgzTo(TestFile tarFile) {
769
-
// return tgzTo(tarFile, false);
770
-
// }
771
-
//
772
-
// public TestFile tgzTo(TestFile tarFile, boolean readOnly) {
773
-
// new TestFileHelper(this).tgzTo(tarFile, readOnly);
774
-
// return this;
775
-
// }
776
-
//
777
-
// public TestFile tbzTo(TestFile tarFile) {
778
-
// return tbzTo(tarFile, false);
779
-
// }
780
-
//
781
-
// public TestFile tbzTo(TestFile tarFile, boolean readOnly) {
782
-
// new TestFileHelper(this).tbzTo(tarFile, readOnly);
783
-
// return this;
784
-
// }
785
-
//
786
-
// public TestFile bzip2To(TestFile compressedFile) {
787
-
// new TestFileHelper(this).bzip2To(compressedFile);
788
-
// return this;
789
-
// }
790
-
//
791
-
// public TestFile gzipTo(TestFile compressedFile) {
792
-
// new TestFileHelper(this).gzipTo(compressedFile);
793
-
// return this;
794
-
// }
795
-
796
626
publicSnapshotsnapshot() {
797
627
assertIsFile();
798
628
returnnewSnapshot(lastModified(), md5(this));
@@ -803,72 +633,13 @@ public void assertHasChangedSince(Snapshot snapshot) {
803
633
assertTrue(String.format("contents or modification time of %s have not changed", this), now.modTime != snapshot.modTime || !now.hash.equals(snapshot.hash));
0 commit comments