dust-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>se.l4.dust</groupId> <artifactId>dust-core</artifactId> <version>0.6.0</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>se.l4.dust</groupId> <artifactId>dust-base</artifactId> <version>0.6.0</version> </parent> <artifactId>dust-core</artifactId> <packaging>jar</packaging> <name>${project.artifactId}</name> <properties> <antlr4-version>4.7.2</antlr4-version> </properties> <dependencies> <dependency> <groupId>se.l4.crayon</groupId> <artifactId>crayon-core</artifactId> <version>${crayon-version}</version> </dependency> <dependency> <groupId>se.l4.commons</groupId> <artifactId>commons-types</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>${antlr4-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.8.0-beta4</version> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.26.0-GA</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>${antlr4-version}</version> <executions> <execution> <id>antlr</id> <goals> <goal>antlr4</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>