<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.fynnth</groupId> <artifactId>cbomkit-csharp-parser</artifactId> <version>0.1.3</version> <packaging>jar</packaging> <name>CBOMkit C# Parser</name> <description>ANTLR-based C# parser and lexer base classes for CBOMkit.</description> <url>https://github.com/fynnth/cbomkit-csharp-parser</url> <licenses> <license> <name>Eclipse Public License - v 2.0</name> <url>https://www.eclipse.org/legal/epl-2.0/</url> </license> </licenses> <developers> <developer> <id>fynnth</id> <name>Fynn</name> <url>https://github.com/fynnth</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/fynnth/cbomkit-csharp-parser.git</connection> <developerConnection>scm:git:ssh://git@github.com/fynnth/cbomkit-csharp-parser.git</developerConnection> <url>https://github.com/fynnth/cbomkit-csharp-parser</url> </scm> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <antlr.version>4.13.1</antlr.version> </properties> <dependencies> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>${antlr.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>${antlr.version}</version> <executions> <execution> <goals> <goal>antlr4</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/main/antlr4</sourceDirectory> <outputDirectory>${project.build.directory}/generated-sources/antlr4</outputDirectory> <visitor>true</visitor> <listener>true</listener> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <release>17</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.github.fynnth</groupId> <artifactId>cbomkit-csharp-parser</artifactId> <version>0.1.3</version> </dependency>
io.github.fynnth:cbomkit-csharp-parser:0.1.3