OpenJDK / code-tools / jmh
view jmh-archetypes/jmh-kotlin-benchmark-archetype/pom.xml @ 498:cf0605746784
Continue in 1.0-SNAPSHOT.
author | shade |
---|---|
date | Fri, 07 Mar 2014 23:56:57 +0400 |
parents | 3e0a08bcfe2c |
children | 2767984ca172 |
line wrap: on
line source
<?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.openjdk.jmh</groupId> <artifactId>jmh-archetypes</artifactId> <version>1.0-SNAPSHOT</version> </parent> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-kotlin-benchmark-archetype</artifactId> <packaging>maven-archetype</packaging> <name>JMH Benchmark Archetype: Kotlin</name> <description> Generates Kotlin benchmarking project, uses JMH bytecode processors </description> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <escapeString>\</escapeString> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>archetype-resources/pom.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>archetype-resources/pom.xml</exclude> </excludes> </resource> </resources> </build> </project>