dflib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dflib</groupId> <artifactId>dflib</artifactId> <version>2.0.0-M3</version> </dependency>
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>dflib-parent</artifactId> <groupId>org.dflib</groupId> <version>2.0.0-M3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>dflib</artifactId> <name>dflib: DataFrame library</name> <description>dflib: DataFrame library</description> <build> <plugins> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <executions> <execution> <goals> <goal>antlr4</goal> </goals> </execution> </executions> <configuration> <visitor>true</visitor> <outputDirectory>${project.build.sourceDirectory}</outputDirectory> <includes> <include>**/Exp.g4</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <id>clean-antlr4-generated-sources</id> <phase>process-sources</phase> <goals> <goal>clean</goal> </goals> <configuration> <excludeDefaultDirectories>true</excludeDefaultDirectories> <filesets> <fileset> <directory>${project.build.sourceDirectory}</directory> <includes> <include>*.tokens</include> </includes> </fileset> <fileset> <directory>${project.build.sourceDirectory}/org/dflib/exp/parser/antlr4</directory> <includes> <include>*.interp</include> </includes> </fileset> </filesets> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <relocations> <relocation> <pattern>org.antlr.v4.runtime</pattern> <shadedPattern>org.dflib.exp.parser.org.antlr.v4.runtime</shadedPattern> </relocation> </relocations> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.11.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.11.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.17.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.bootique.jetty</groupId> <artifactId>bootique-jetty-jakarta-junit5</artifactId> <version>3.0-M6</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>bootique-jetty-jakarta</artifactId> <groupId>io.bootique.jetty</groupId> </exclusion> <exclusion> <artifactId>bootique-junit5</artifactId> <groupId>io.bootique</groupId> </exclusion> <exclusion> <artifactId>jersey-client</artifactId> <groupId>org.glassfish.jersey.core</groupId> </exclusion> <exclusion> <artifactId>jersey-hk2</artifactId> <groupId>org.glassfish.jersey.inject</groupId> </exclusion> <exclusion> <artifactId>jakarta.activation-api</artifactId> <groupId>jakarta.activation</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.16</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>