Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apache-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ under the License.
<artifactId>maven-slf4j-provider</artifactId>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<groupId>org.jline</groupId>
<artifactId>jansi</artifactId>
</dependency>
<dependency>
Expand Down Expand Up @@ -145,7 +145,7 @@ under the License.
</goals>
<configuration>
<includeArtifactIds>jansi</includeArtifactIds>
<includes>org/fusesource/jansi/internal/native/Windows/**</includes>
<includes>org/jline/nativ/Windows/**</includes>
</configuration>
</execution>
</executions>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Copyright (c) 2002-2023, the original author or authors.
All rights reserved.

https://opensource.org/licenses/BSD-3-Clause

Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:

Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with
the distribution.

Neither the name of JLine nor the names of its contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
2 changes: 1 addition & 1 deletion apache-maven/src/main/assembly/component.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ under the License.
</includes>
</fileSet>
<fileSet>
<directory>target/dependency/org/fusesource/jansi/internal/native</directory>
<directory>target/dependency/org/jline/nativ</directory>
<outputDirectory>lib/jansi-native</outputDirectory>
<includes>
<include>**</include>
Expand Down
4 changes: 2 additions & 2 deletions maven-core/src/main/resources/META-INF/maven/extension.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ under the License.
<exportedPackage>org.slf4j.event.*</exportedPackage>

<!-- JAnsi -->
<exportedPackage>org.fusesource.jansi.*</exportedPackage>
<exportedPackage>org.jline.jansi.*</exportedPackage>
</exportedPackages>

<exportedArtifacts>
Expand Down Expand Up @@ -174,7 +174,7 @@ under the License.
<exportedArtifact>javax.inject:javax.inject</exportedArtifact>
<exportedArtifact>javax.annotation:javax.annotation-api</exportedArtifact>
<exportedArtifact>org.slf4j:slf4j-api</exportedArtifact>
<exportedArtifact>org.fusesource.jansi:jansi</exportedArtifact>
<exportedArtifact>org.jline:jansi</exportedArtifact>

<!--
| We must also filter out the old Aether or NoClassDefFoundErrors will surface
Expand Down
2 changes: 1 addition & 1 deletion maven-embedder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ under the License.
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<groupId>org.jline</groupId>
<artifactId>jansi</artifactId>
<scope>test</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ under the License.
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>3.4.2</version>
<version>3.4.3-SNAPSHOT</version>
<exclusions>
<!-- We use org.apache.maven.shared.utils.logging only in Maven Core -->
<exclusion>
Expand All @@ -351,9 +351,9 @@ under the License.
</exclusions>
</dependency>
<dependency>
<groupId>org.fusesource.jansi</groupId>
<groupId>org.jline</groupId>
<artifactId>jansi</artifactId>
<version>2.4.2</version>
<version>3.30.8</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
Loading