winegrower-extension/winegrower-build/winegrower-build-common/src/main/java/org/apache/winegrower/extension/build/common/FatJar.java [83:89]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        ZipEntry nextEntry;
                        while ((nextEntry = inputStream.getNextEntry()) != null) {
                            final String name = nextEntry.getName();
                            if (!alreadyAdded.add(name)) {
                                continue;
                            }
                            metadataBuilder.onFile(name);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



winegrower-extension/winegrower-build/winegrower-maven-plugin/src/main/java/org/apache/winegrower/extension/build/maven/MetadataBuilderMojo.java [54:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    ZipEntry nextEntry;
                    while ((nextEntry = inputStream.getNextEntry()) != null) {
                        final String name = nextEntry.getName();
                        if (!alreadyAdded.add(name)) {
                            continue;
                        }
                        metadataBuilder.onFile(name);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



