har-reader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.sstoehr</groupId> <artifactId>har-reader</artifactId> <version>2.1.9</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.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>de.sstoehr</groupId> <artifactId>har-reader</artifactId> <version>2.1.9</version> <packaging>jar</packaging> <name>har-reader</name> <description>A library to access HTTP archive format with Java</description> <url>https://github.com/sdstoehr/har-reader</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jackson.core.version>2.11.1</jackson.core.version> <jackson.databind.version>2.11.1</jackson.databind.version> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.core.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.databind.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>7</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <source>1.7</source> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.5</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <developers> <developer> <id>sdstoehr</id> <name>Sebastian Stöhr</name> <email>sebastian@sebastianstoehr.de</email> </developer> </developers> <licenses> <license> <name>The MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/sdstoehr/har-reader.git</url> <connection>scm:git:git@github.com:sdstoehr/har-reader.git</connection> <developerConnection>scm:git:git@github.com:sdstoehr/har-reader.git</developerConnection> </scm> <profiles> <profile> <id>github</id> <distributionManagement> <repository> <id>github</id> <name>GitHub sdstoehr Apache Maven Packages</name> <url>https://maven.pkg.github.com/sdstoehr/har-reader</url> </repository> </distributionManagement> </profile> </profiles> </project>