-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into migrate-jline3
- Loading branch information
Showing
176 changed files
with
7,727 additions
and
7,234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ | |
|
||
<groupId>org.rascalmpl</groupId> | ||
<artifactId>rascal</artifactId> | ||
<version>0.40.12-SNAPSHOT</version> | ||
<version>0.41.0-RC3-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<scm> | ||
<developerConnection>scm:git:ssh://[email protected]/usethesource/rascal.git</developerConnection> | ||
<tag>v0.40.10</tag> | ||
<tag>v0.41.0-RC1</tag> | ||
</scm> | ||
|
||
<!-- dependency resolution configuration (usethesource) --> | ||
|
@@ -29,10 +29,11 @@ | |
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<lucence-version>7.5.0</lucence-version> | ||
<maven-version>3.9.9</maven-version> | ||
<exec.mainClass>org.rascalmpl.shell.RascalShell</exec.mainClass> | ||
<rascal.test.memory>2</rascal.test.memory> | ||
<rascal.test.memory>3</rascal.test.memory> | ||
<maven.compiler.release>11</maven.compiler.release> | ||
<rascal-maven.version>0.28.4</rascal-maven.version> | ||
<rascal-maven.version>0.28.9-BOOT1</rascal-maven.version> | ||
<jline.version>3.27.0</jline.version> | ||
</properties> | ||
|
||
|
@@ -104,7 +105,7 @@ | |
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>buildnumber-maven-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>3.2.1</version> | ||
<executions> | ||
<execution> | ||
<phase>validate</phase> | ||
|
@@ -169,7 +170,8 @@ | |
<goal>package</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<!-- commented out for bootstrapping purposes; | ||
<execution> | ||
<id>default-cli</id> | ||
<phase>compile</phase> | ||
<goals> | ||
|
@@ -190,7 +192,7 @@ | |
<ignore>${project.basedir}/src/org/rascalmpl/library/lang/rascal</ignore> | ||
</ignores> | ||
</configuration> | ||
</execution> | ||
</execution> --> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
|
@@ -212,7 +214,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.3.1</version> | ||
<version>3.5.2</version> | ||
<executions> | ||
<execution> | ||
<id>test</id> | ||
|
@@ -260,7 +262,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<version>3.7.1</version> | ||
<version>3.8.1</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
|
@@ -276,7 +278,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<version>3.1.1</version> | ||
<configuration> | ||
<tagNameFormat>v@{project.version}</tagNameFormat> | ||
<arguments>-Drascal.compile.skip -Drascal.tutor.skip -DskipTests</arguments> | ||
|
@@ -285,7 +287,7 @@ | |
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>license-maven-plugin</artifactId> | ||
<version>2.4.0</version> | ||
<version>2.5.0</version> | ||
<executions> | ||
<execution> | ||
<id>download-licenses</id> | ||
|
@@ -317,10 +319,15 @@ | |
</transformer> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | ||
<resource>org/rascalmpl/uri/resolvers.config</resource> | ||
<resource>io/usethesource/vallang/type/types.config </resource> | ||
</transformer> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | ||
<resource>io/usethesource/vallang/type/types.config</resource> | ||
</transformer> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | ||
<resource>META-INF/sisu/javax.inject.Named</resource> <!-- Needed for dependency injection in MavenCli --> | ||
</transformer> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" /> <!-- Needed for dependency injection in MavenCli --> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" /> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer"> | ||
<addHeader>false</addHeader> | ||
</transformer> | ||
|
@@ -444,22 +451,22 @@ | |
<dependency> <!-- used by the compression uri feature--> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
<version>1.26.1</version> | ||
<version>1.27.1</version> | ||
</dependency> | ||
<dependency> <!-- needed by commons-compress for compressed+...://...zst --> | ||
<groupId>com.github.luben</groupId> | ||
<artifactId>zstd-jni</artifactId> | ||
<version>1.5.5-11</version> | ||
<version>1.5.6-8</version> | ||
</dependency> | ||
<dependency> <!-- used for base32 encoding in IO and String, needed anyway for commons-compress --> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
<version>1.17.0</version> | ||
<version>1.17.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.10.1</version> | ||
<version>2.11.0</version> | ||
</dependency> | ||
<dependency> <!-- line reader/completion/history support --> | ||
<groupId>org.jline</groupId> | ||
|
@@ -494,7 +501,7 @@ | |
<dependency> | ||
<groupId>org.yaml</groupId> | ||
<artifactId>snakeyaml</artifactId> | ||
<version>2.2</version> | ||
<version>2.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jsoup</groupId> | ||
|
@@ -534,7 +541,105 @@ | |
<dependency> | ||
<groupId>com.ibm.icu</groupId> | ||
<artifactId>icu4j</artifactId> | ||
<version>74.2</version> | ||
<version>76.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-embedder</artifactId> | ||
<version>${maven-version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<version>3.8.1</version> | ||
</dependency> | ||
<dependency> <!-- needed for maven-embedder--> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-nop</artifactId> | ||
<version>1.7.36</version> | ||
</dependency> | ||
<dependency> <!-- needed for maven-embedder--> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-compat</artifactId> | ||
<version>${maven-version}</version> | ||
</dependency> | ||
<dependency> <!-- needed for maven-embedder--> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-core</artifactId> | ||
<version>${maven-version}</version> | ||
</dependency> | ||
</dependencies> | ||
<profiles> | ||
<profile> | ||
<id>unshaded</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.6.0</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<transformers> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | ||
<manifestEntries> | ||
<Name>rascal</Name> | ||
<Main-Class>org.rascalmpl.shell.RascalShell</Main-Class> | ||
<Specification-Version>${project.version}</Specification-Version> | ||
<Specification-Vendor>http://www.usethesource.io</Specification-Vendor> | ||
</manifestEntries> | ||
</transformer> | ||
</transformers> | ||
<relocations> | ||
<relocation> | ||
<pattern>org.fusesource.jansi</pattern> | ||
<shadedPattern>org.rascalmpl.fusesource.jansi</shadedPattern> | ||
<excludes> | ||
<exclude>org.fusesource.jansi.internal.*</exclude> | ||
</excludes> | ||
</relocation> | ||
<relocation> | ||
<pattern>jline</pattern> | ||
<shadedPattern>org.rascalmpl.jline</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<exclude>META-INF/*.SF</exclude> | ||
<exclude>META-INF/*.DSA</exclude> | ||
<exclude>META-INF/*.RSA</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
<artifactSet> | ||
<includes> | ||
<include>jline:*</include> | ||
</includes> | ||
</artifactSet> | ||
<shadedClassifierName>unshaded</shadedClassifierName> | ||
<shadedArtifactAttached>true</shadedArtifactAttached> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>license-maven-plugin</artifactId> | ||
<configuration> | ||
<skipDownloadLicenses>true</skipDownloadLicenses> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
<profile> | ||
</profile> | ||
</profiles> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.