Skip to content
Merged
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
1 change: 1 addition & 0 deletions courses/Packages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@ The currently available packages are grouped in two categories: language support
| Rascal LSP | [rascal-lsp](/docs/Packages/org.rascalmpl.rascal-lsp/) | LSP for Rascal and LSP generator for DSLs in Rascal |
| Typepal | [typepal](/docs/Packages/org.rascalmpl.typepal/) | Generic name and type analysis framework |
| Rascal Tutor | rascal-tutor | Rascal source code documenter and manual authoring tool, documentation not released yet due to changes in tutor infrastructure |
| Rascal Lucene | [rascal-lucene](/docs/Packages/org.rascalmpl.rascal-lucene/) | Two-way mapping between Rascal and the Apache Lucene search and indexing library |
18 changes: 16 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<drambiguity.version>0.3.8</drambiguity.version>
<java-air.version>1.0.1</java-air.version>
<rascal-lsp.version>2.22.0</rascal-lsp.version>
<rascal-lucene.version>0.1.0</rascal-lucene.version>
<!--php-analysis.version>0.2.4</php-analysis.version> -->
<!--<python-air.version>0.0.11</python-air.version> -->
</properties>
Expand Down Expand Up @@ -166,11 +167,19 @@
<outputDirectory>${project.basedir}</outputDirectory>
<includes>docs/**/*.*</includes>
<excludes>docs/index.value</excludes>
</artifactItem> -->
</artifactItem> -->
<artifactItem>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal-lucene</artifactId>
<version>${rascal-lucene.version}</version>
<outputDirectory>${project.basedir}</outputDirectory>
<includes>docs/**/*.*</includes>
<excludes>docs/index.value</excludes>
</artifactItem>
<artifactItem>
<groupId>org.rascalmpl</groupId>
<artifactId>java-air</artifactId>
<version>${java-version}</version>
<version>${java-air.version}</version>
<outputDirectory>${project.basedir}</outputDirectory>
<includes>docs/**/*.*</includes>
<excludes>docs/index.value</excludes>
Expand Down Expand Up @@ -301,6 +310,11 @@
<artifactId>drambiguity</artifactId>
<version>${drambiguity.version}</version>
</dependency>
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal-lucene</artifactId>
<version>${rascal-lucene.version}</version>
</dependency>
<!--<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>php-analysis</artifactId>
Expand Down