marid-util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.marid</groupId> <artifactId>marid-util</artifactId> <version>0.9.8.10</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>org.marid</groupId> <artifactId>marid</artifactId> <version>0.9.8.10</version> </parent> <artifactId>marid-util</artifactId> <properties> <tests.opens>--add-opens marid.util/org.marid.misc=ALL-UNNAMED</tests.opens> </properties> <dependencies> <dependency> <groupId>org.marid</groupId> <artifactId>marid-processors</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> <version>13.0.1</version> <optional>true</optional> </dependency> <dependency> <groupId>org.marid</groupId> <artifactId>marid-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessors> <processor>org.marid.processors.CheckedFunctionalInterfaceProcessor</processor> </annotationProcessors> <annotationProcessorPaths> <path> <groupId>org.marid</groupId> <artifactId>marid-processors</artifactId> <version>${project.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>