xstream-jmh
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream-jmh</artifactId> <version>1.4.21</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/maven-v4_0_0.xsd"> <!-- Copyright (C) 2015, 2017, 2020, 2021, 2022, 2024 XStream committers. All rights reserved. The software in this package is published under the terms of the BSD style license a copy of which has been included with this distribution in the LICENSE.txt file. Created on 25. October 2015 by Joerg Schaible --> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream-parent</artifactId> <version>1.4.21</version> </parent> <artifactId>xstream-jmh</artifactId> <packaging>jar</packaging> <name>XStream JMH Benchmark</name> <description>JMH Benchmark suite of XStream.</description> <profiles> <profile> <id>jdk11-ge</id> <activation> <jdk>[11,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> </configuration> <dependencies> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>${version.javax.annotation.api}</version> </dependency> </dependencies> </plugin> </plugins> </build> </profile> <profile> <id>jdk9-ge-jdk10</id> <activation> <jdk>[9,11)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> <compilerArgs> <arg>-J--add-modules</arg> <arg>-Jjava.xml.ws.annotation</arg> </compilerArgs> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>jdk8</id> <activation> <jdk>1.8</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.plugin.maven.javadoc}</version> <configuration> <additionalparam>${javadoc.xdoclint}</additionalparam> <detectJavaApiLink>false</detectJavaApiLink> <source>${version.java.source}</source> <links> <link>${javadoc.link.javase}</link> </links> </configuration> </plugin> </plugins> </reporting> </profile> <profile> <id>jdk7-le</id> <activation> <jdk>(,1.7]</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <excludes> <exclude>**/Base64**</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>app</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> <configuration> <descriptors> <descriptor>${basedir}/src/assembly-app.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>com.brsanthu</groupId> <artifactId>migbase64</artifactId> </dependency> <!-- parser --> <dependency> <groupId>io.github.x-stream</groupId> <artifactId>mxparser</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>xpp3</groupId> <artifactId>xpp3_min</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>net.sf.kxml</groupId> <artifactId>kxml2-min</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>stax</groupId> <artifactId>stax</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.woodstox</groupId> <artifactId>woodstox-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>xom</groupId> <artifactId>xom</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </dependency> </dependencies> <properties> <version.java.source>${version.java.6}</version.java.source> <version.java.target>${version.java.6}</version.java.target> </properties> </project>