Skip to content

Commit

Permalink
Fixes #5 - Add lexer
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed Mar 24, 2024
1 parent bc0c7bc commit a238a8d
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
16 changes: 16 additions & 0 deletions lexer/pom.xml
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.manorrock.bengal</groupId>
<artifactId>project</artifactId>
<version>24.4.0-SNAPSHOT</version>
</parent>
<artifactId>lexer</artifactId>
<version>24.4.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Manorrock Bengal - Lexer</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
17 changes: 17 additions & 0 deletions lexer/src/main/java/com/manorrock/bengal/lexer/Lexer.java
@@ -0,0 +1,17 @@
package com.manorrock.bengal.lexer;

/**
* The Bengal Lexer.
*
* @author Manfred Riem (mriem@manorrock.com)
*/
public class Lexer {

/**
* Main method.
*
* @param arguments the command line arguments
*/
public static void main(String[] arguments) {
}
}
10 changes: 6 additions & 4 deletions pom.xml
Expand Up @@ -6,12 +6,14 @@
http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>icu.bengal</groupId>
<groupId>com.manorrock.bengal</groupId>
<artifactId>project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>24.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Bengal - Project</name>
<modules></modules>
<name>Manorrock Bengal - Project</name>
<modules>
<module>lexer</module>
</modules>
<properties>
<!-- dependencies -->
<antlr.version>4.12.0</antlr.version>
Expand Down

0 comments on commit a238a8d

Please sign in to comment.