jebml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.kokorin</groupId> <artifactId>jebml</artifactId> <version>2.3.1</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>com.github.kokorin</groupId> <artifactId>jebml</artifactId> <version>2.3.1</version> <packaging>jar</packaging> <name>jebml</name> <description>Matroska muxer/demuxer</description> <url>https://github.com/kokorin/jebml</url> <licenses> <license> <name>GNU Lesser General Public License, version 2.1</name> <url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html</url> </license> </licenses> <developers> <developer> <name>Michael Jameson</name> <email>michael.jameson@schneider-electric.com</email> <url>https://github.com/mjameson-se</url> </developer> <developer> <name>Matt Wharton</name> <email>matt.wharton@schneider-electric.com</email> <url>https://github.com/goku3989</url> </developer> <developer> <name>Mike Childs</name> <email>m_chi919@msn.com</email> <url>https://github.com/redwheelbarrow</url> </developer> <developer> <name>Dominic D'Souza</name> <email>ddsouz@gmail.com</email> <url>https://github.com/ddsouz</url> </developer> <developer> <name>Moritz Bunkus</name> <email>moritz@bunkus.org</email> <url>http://www.bunkus.org/</url> </developer> <developer> <name>Steve Lhomme</name> <email>slhomme@matroska.org</email> <url>https://github.com/robUx4</url> </developer> <developer> <name>Denis Kokorin</name> <email>kokorin86@gmail.com</email> <url>https://github.com/kokorin</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/kokorin/jebml.git</connection> <developerConnection>scm:git:ssh://github.com/kokorin/jebml.git</developerConnection> <url>http://github.com/kokorin/jebml/tree/master</url> </scm> <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> <properties> <sl4j.version>1.7.5</sl4j.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${sl4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.2</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <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>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </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> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>