io.earcam.utilitarian.io
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.earcam.utilitarian</groupId> <artifactId>io.earcam.utilitarian.io</artifactId> <version>1.2.1</version> </dependency>
<?xml version="1.0"?> <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>io.earcam</groupId> <artifactId>io.earcam.utilitarian</artifactId> <version>1.2.1</version> </parent> <groupId>io.earcam.utilitarian</groupId> <artifactId>io.earcam.utilitarian.io</artifactId> <packaging>jar</packaging> <description>In/Output stream extensions</description> <url>${site.url}${earcam.project.name.short}</url> <distributionManagement> <site> <id>netlify</id> <url>${site.url}${earcam.project.name.short}/</url> </site> </distributionManagement> <properties> <skip.execution.pitest>false</skip.execution.pitest> <earcam.project.name.short>io</earcam.project.name.short> </properties> <dependencies> <dependency> <groupId>io.earcam</groupId> <artifactId>io.earcam.unexceptional</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.revapi</groupId> <artifactId>revapi-maven-plugin</artifactId> <configuration> <analysisConfiguration> { "revapi" : { "ignore" : [ { "code": "java.annotation.added", "annotationType": "javax.annotation.concurrent.NotThreadSafe", "annotation": "@javax.annotation.concurrent.NotThreadSafe", "package": "io.earcam.utilitarian.io", "elementKind": "class" } ] } } </analysisConfiguration> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> </project>