mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-10-18 08:24:11 +00:00
Fixup 83dacbf0
Remove --install option
This commit is contained in:
@@ -106,7 +106,6 @@
|
|||||||
--allow-incomplete-classpath
|
--allow-incomplete-classpath
|
||||||
-H:IncludeResources=org/jboss/fuse/mvnd/.*
|
-H:IncludeResources=org/jboss/fuse/mvnd/.*
|
||||||
-H:IncludeResources=org/jline/utils/.*
|
-H:IncludeResources=org/jline/utils/.*
|
||||||
-H:EnableURLProtocols=https
|
|
||||||
</buildArgs>
|
</buildArgs>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@@ -1,104 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2019 the original author or authors.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
package org.jboss.fuse.mvnd.client.svm;
|
|
||||||
|
|
||||||
import com.oracle.svm.core.annotate.Alias;
|
|
||||||
import com.oracle.svm.core.annotate.KeepOriginal;
|
|
||||||
import com.oracle.svm.core.annotate.RecomputeFieldValue;
|
|
||||||
import com.oracle.svm.core.annotate.RecomputeFieldValue.Kind;
|
|
||||||
import com.oracle.svm.core.annotate.Substitute;
|
|
||||||
import com.oracle.svm.core.annotate.TargetClass;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
|
||||||
import java.util.zip.ZipException;
|
|
||||||
import org.apache.commons.compress.archivers.zip.AsiExtraField;
|
|
||||||
import org.apache.commons.compress.archivers.zip.ExtraFieldParsingBehavior;
|
|
||||||
import org.apache.commons.compress.archivers.zip.ExtraFieldUtils;
|
|
||||||
import org.apache.commons.compress.archivers.zip.ExtraFieldUtils.UnparseableExtraField;
|
|
||||||
import org.apache.commons.compress.archivers.zip.ZipExtraField;
|
|
||||||
import org.apache.commons.compress.archivers.zip.ZipShort;
|
|
||||||
|
|
||||||
@TargetClass(ExtraFieldUtils.class)
|
|
||||||
@Substitute
|
|
||||||
public final class ExtraFieldUtilsSubstitution {
|
|
||||||
|
|
||||||
@Alias
|
|
||||||
@RecomputeFieldValue(kind = Kind.None)
|
|
||||||
private static final Map<ZipShort, Class<?>> implementations;
|
|
||||||
|
|
||||||
static {
|
|
||||||
implementations = new ConcurrentHashMap<>();
|
|
||||||
registerInst(new AsiExtraField());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void registerInst(ZipExtraField ze) {
|
|
||||||
implementations.put(ze.getHeaderId(), ze.getClass());
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static ZipExtraField createExtraField(final ZipShort headerId)
|
|
||||||
throws InstantiationException, IllegalAccessException {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static ZipExtraField createExtraFieldNoDefault(final ZipShort headerId)
|
|
||||||
throws InstantiationException, IllegalAccessException {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static ZipExtraField[] parse(final byte[] data) throws ZipException {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static ZipExtraField[] parse(final byte[] data, final boolean local)
|
|
||||||
throws ZipException {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static ZipExtraField[] parse(final byte[] data, final boolean local,
|
|
||||||
final UnparseableExtraField onUnparseableData)
|
|
||||||
throws ZipException {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static ZipExtraField[] parse(final byte[] data, final boolean local,
|
|
||||||
final ExtraFieldParsingBehavior parsingBehavior)
|
|
||||||
throws ZipException {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static byte[] mergeLocalFileDataData(final ZipExtraField[] data) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static byte[] mergeCentralDirectoryData(final ZipExtraField[] data) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@KeepOriginal
|
|
||||||
public static ZipExtraField fillExtraField(final ZipExtraField ze, final byte[] data, final int off,
|
|
||||||
final int len, final boolean local) throws ZipException {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -32,11 +32,6 @@
|
|||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.commons</groupId>
|
|
||||||
<artifactId>commons-compress</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jline</groupId>
|
<groupId>org.jline</groupId>
|
||||||
<artifactId>jline-terminal</artifactId>
|
<artifactId>jline-terminal</artifactId>
|
||||||
|
@@ -1,5 +0,0 @@
|
|||||||
# An absolute path to your Maven Daemon installation
|
|
||||||
mvnd.home = %s
|
|
||||||
|
|
||||||
# java.home is optional if you have JAVA_HOME environment variable set
|
|
||||||
%s
|
|
Reference in New Issue
Block a user