kaitai-struct-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kaitai</groupId> <artifactId>kaitai-struct-runtime</artifactId> <version>0.10</version> </dependency>
<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> <groupId>io.kaitai</groupId> <artifactId>kaitai-struct-runtime</artifactId> <packaging>jar</packaging> <version>0.10</version> <name>Kaitai Struct runtime library for Java</name> <description> Kaitai Struct is a declarative language used for describe various binary data structures using .ksy format. .ksy format can be compiled into the parser source code in target language. This library is a small collection of runtime methods used by the code generated by Kaitai Struct for Java. </description> <url>http://kaitai.io</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>Mikhail Yakshin</name> <email>greycat.na.kor@gmail.com</email> <organization>Kaitai Project</organization> <organizationUrl>http://kaitai.io</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/kaitai-io/kaitai_struct_java_runtime.git</connection> <developerConnection>scm:git:ssh://github.com:kaitai-io/kaitai_struct_java_runtime.git</developerConnection> <url>https://github.com/kaitai-io/kaitai_struct_java_runtime</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <profiles> <profile> <id>jdk9</id> <activation> <jdk>[1.9,)</jdk> </activation> <properties> <maven.compiler.release>7</maven.compiler.release> </properties> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <tags> <tag> <name>apiNote</name> <placement>a</placement> <head>API Note:</head> </tag> <tag> <name>implSpec</name> <placement>a</placement> <head>Implementation Requirements:</head> </tag> <tag> <name>implNote</name> <placement>a</placement> <head>Implementation Note:</head> </tag> <tag><name>param</name></tag> <tag><name>return</name></tag> <tag><name>throws</name></tag> <tag><name>since</name></tag> <tag><name>version</name></tag> <tag><name>serialData</name></tag> <tag><name>see</name></tag> </tags> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>