mmtf-decoder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.rcsb</groupId>
<artifactId>mmtf-decoder</artifactId>
<version>0.1.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> <parent> <groupId>org.rcsb</groupId> <artifactId>mmtf</artifactId> <version>0.1.1</version> </parent> <artifactId>mmtf-decoder</artifactId> <packaging>jar</packaging> <name>mmtf-decoder</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> </dependency> <dependency> <groupId>org.rcsb</groupId> <artifactId>mmtf-api</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>org.rcsb</groupId> <artifactId>mmtf-serialization</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>org.msgpack</groupId> <artifactId>jackson-dataformat-msgpack</artifactId> <version>0.7.1</version> </dependency> <dependency> <groupId>uk.co.jemos.podam</groupId> <artifactId>podam</artifactId> </dependency> <dependency> <groupId>org.unitils</groupId> <artifactId>unitils-core</artifactId> </dependency> <!-- junit managed by parent pom, don't set version or scope here --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <!-- logging dependencies (managed by parent pom, don't set versions or scopes here) --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- binding for log4j2, scope=runTime set in parent pom --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <debug>true</debug> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <aggregate>true</aggregate> <breakiterator>true</breakiterator> <quiet>true</quiet> <source>1.8</source> <verbose>false</verbose> <linksource>true</linksource> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.3</version> </plugin> </plugins> </reporting> </project>