mirror of https://github.com/apache/maven.git
[MNG-7172] Remove expansion of Jansi native libraries
This commit is contained in:
parent
6b56fc8424
commit
6bed162a65
|
@ -148,22 +148,6 @@ under the License.
|
|||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<configuration>
|
||||
<includeArtifactIds>jansi</includeArtifactIds>
|
||||
<includes>org/fusesource/jansi/internal/native/**</includes>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>unpack-jansi-native</id>
|
||||
<goals>
|
||||
<goal>unpack-dependencies</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
|
|
|
@ -63,14 +63,6 @@ under the License.
|
|||
<include>**</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>target/dependency/org/fusesource/jansi/internal/native</directory>
|
||||
<outputDirectory>lib/jansi-native</outputDirectory>
|
||||
<includes>
|
||||
<include>**</include>
|
||||
</includes>
|
||||
<fileMode>0755</fileMode>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>src/assembly/maven/bin</directory>
|
||||
<outputDirectory>bin</outputDirectory>
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
This directory contains Jansi native libraries, extracted from Jansi jar.
|
||||
|
||||
You can add your own extensions for platforms not natively supported by
|
||||
Jansi: the libraries follow HawtJNI directory and filename conventions.
|
||||
See http://fusesource.github.io/hawtjni/documentation/api/org/fusesource/hawtjni/runtime/Library.html
|
||||
|
||||
See https://github.com/fusesource/jansi-native for native lib source.
|
|
@ -1,4 +1,4 @@
|
|||
LAUNCHER_JAR=`echo "${MAVEN_HOME}"/boot/plexus-classworlds-*.jar`
|
||||
MAVEN_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||
MAVENHOME_CONFIG=`echo "-Dclassworlds.conf=${MAVEN_HOME}/bin/m2.conf" "-Dmaven.home=${MAVEN_HOME}" "-Dlibrary.jansi.path=${MAVEN_HOME}/lib/jansi-native"`
|
||||
MAVENHOME_CONFIG=`echo "-Dclassworlds.conf=${MAVEN_HOME}/bin/m2.conf" "-Dmaven.home=${MAVEN_HOME}"`
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
for %%i in ("%MAVEN_HOME%"\boot\plexus-classworlds-*) do set LAUNCHER_JAR="%%i"
|
||||
set MAVEN_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||
set MAVENHOME_CONFIG="-Dclassworlds.conf=%MAVEN_HOME%\bin\m2.conf" "-Dmaven.home=%MAVEN_HOME%" "-Dlibrary.jansi.path=%MAVEN_HOME%\lib\jansi-native"
|
||||
set MAVENHOME_CONFIG="-Dclassworlds.conf=%MAVEN_HOME%\bin\m2.conf" "-Dmaven.home=%MAVEN_HOME%"
|
||||
|
||||
|
|
Loading…
Reference in New Issue