jgalgo-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jgalgo</groupId> <artifactId>jgalgo-core</artifactId> <version>0.5.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jgalgo</groupId> <artifactId>jgalgo</artifactId> <version>0.5.0</version> </parent> <artifactId>jgalgo-core</artifactId> <name>JGAlgo - Core</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>it.unimi.dsi</groupId> <artifactId>fastutil-core</artifactId> <version>${fastutil.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter-engine.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build-helper-maven-plugin.version}</version> <executions> <execution> <id>add-genereted-source-dir</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src-generated/main/java</source> </sources> </configuration> </execution> <execution> <id>add-genereted-test-source-dir</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src-generated/test/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec-maven-plugin.version}</version> <executions> <execution> <id>clean-gensources</id> <phase>clean</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>python3</executable> <arguments> <argument>gensources.py</argument> <argument>--clean</argument> </arguments> </configuration> </execution> <execution> <id>gensources</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>python3</executable> <arguments> <argument>gensources.py</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <configuration> <excludes> <exclude>com/jgalgo/internal/util/FIFOQueueIntNoReduce**</exclude> <exclude>com/jgalgo/internal/util/FIFOQueueLongNoReduce**</exclude> <exclude>com/jgalgo/internal/util/Fastutil**</exclude> <exclude>com/jgalgo/internal/util/IntLists2**</exclude> <exclude>com/jgalgo/internal/util/IntImmutableList2**</exclude> <exclude>com/jgalgo/internal/util/DebugPrinter**</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <configuration> <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> </plugins> </build> </project>