fix: 将 libsql-client-go 作为普通目录提交,而非 gitlink
This commit is contained in:
56
go_modules/libsql-client-go/sqliteparser/grammar/pom.xml
Normal file
56
go_modules/libsql-client-go/sqliteparser/grammar/pom.xml
Normal file
@@ -0,0 +1,56 @@
|
||||
<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>
|
||||
<artifactId>sqlite</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>SQLite grammar</name>
|
||||
<parent>
|
||||
<groupId>org.antlr.grammars</groupId>
|
||||
<artifactId>sqlparent</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.antlr</groupId>
|
||||
<artifactId>antlr4-maven-plugin</artifactId>
|
||||
<version>${antlr.version}</version>
|
||||
<configuration>
|
||||
<sourceDirectory>${basedir}</sourceDirectory>
|
||||
<includes>
|
||||
<include>SQLiteLexer.g4</include>
|
||||
<include>SQLiteParser.g4</include>
|
||||
</includes>
|
||||
<visitor>true</visitor>
|
||||
<listener>true</listener>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>antlr4</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.khubla.antlr</groupId>
|
||||
<artifactId>antlr4test-maven-plugin</artifactId>
|
||||
<version>${antlr4test-maven-plugin.version}</version>
|
||||
<configuration>
|
||||
<verbose>false</verbose>
|
||||
<showTree>false</showTree>
|
||||
<entryPoint>parse</entryPoint>
|
||||
<grammarName>SQLite</grammarName>
|
||||
<packageName></packageName>
|
||||
<exampleFiles>examples/</exampleFiles>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>test</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Reference in New Issue
Block a user