blob: 0e904cb9e272ac8651306841595d5e9a7118e8ea [file] [log] [blame]
Paul Duffine2363012015-11-30 16:20:41 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2011 Google Inc.
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Paul Duffin7fc0b452015-11-10 17:45:15 +000021 <modelVersion>4.0.0</modelVersion>
Paul Duffin7fc0b452015-11-10 17:45:15 +000022 <parent>
23 <groupId>org.sonatype.oss</groupId>
24 <artifactId>oss-parent</artifactId>
Paul Duffine2363012015-11-30 16:20:41 +000025 <version>7</version>
Paul Duffin7fc0b452015-11-10 17:45:15 +000026 </parent>
Paul Duffine2363012015-11-30 16:20:41 +000027
28 <groupId>com.google.caliper</groupId>
29 <artifactId>caliper-examples</artifactId>
30 <version>1.0-SNAPSHOT</version>
31 <packaging>jar</packaging>
32
33 <name>Caliper Examples</name>
Paul Duffin7fc0b452015-11-10 17:45:15 +000034 <description>Caliper Examples</description>
Paul Duffine2363012015-11-30 16:20:41 +000035
36 <url>http://code.google.com/p/caliper/</url>
37
38 <inceptionYear>2009</inceptionYear>
39
40 <organization>
41 <name>Google Inc.</name>
42 <url>http://www.google.com</url>
43 </organization>
44
45 <developers>
46 <developer>
47 <name>Gregory Kick</name>
48 <organization>Google Inc.</organization>
49 </developer>
50 <developer>
51 <name>Jesse Wilson</name>
52 </developer>
53 </developers>
54
Paul Duffin7fc0b452015-11-10 17:45:15 +000055 <licenses>
56 <license>
57 <name>The Apache Software License, Version 2.0</name>
58 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
59 <distribution>repo</distribution>
60 </license>
61 </licenses>
Paul Duffine2363012015-11-30 16:20:41 +000062
Paul Duffin7fc0b452015-11-10 17:45:15 +000063 <scm>
64 <connection>scm:git:http://code.google.com/p/caliper/examples</connection>
65 <developerConnection>scm:git:git:http://code.google.com/p/caliper/examples</developerConnection>
66 <url>http://caliper.codegoogle.com/svn/trunk/examples</url>
67 </scm>
Paul Duffine2363012015-11-30 16:20:41 +000068
Paul Duffin7fc0b452015-11-10 17:45:15 +000069 <issueManagement>
70 <system>Google Code Issue Tracking</system>
71 <url>http://code.google.com/p/caliper/issues/list</url>
72 </issueManagement>
Paul Duffine2363012015-11-30 16:20:41 +000073
Paul Duffin7fc0b452015-11-10 17:45:15 +000074 <dependencies>
75 <dependency>
76 <groupId>com.google.caliper</groupId>
77 <artifactId>caliper</artifactId>
Paul Duffine2363012015-11-30 16:20:41 +000078 <version>1.0-SNAPSHOT</version>
Paul Duffin7fc0b452015-11-10 17:45:15 +000079 </dependency>
80 <dependency>
81 <groupId>junit</groupId>
82 <artifactId>junit</artifactId>
83 <version>3.8.2</version>
84 <scope>test</scope>
85 </dependency>
86 </dependencies>
Paul Duffine2363012015-11-30 16:20:41 +000087
Paul Duffin7fc0b452015-11-10 17:45:15 +000088 <build>
89 <defaultGoal>package</defaultGoal>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-compiler-plugin</artifactId>
Paul Duffine2363012015-11-30 16:20:41 +000094 <version>3.2</version>
Paul Duffin7fc0b452015-11-10 17:45:15 +000095 <configuration>
96 <source>1.6</source>
97 <target>1.6</target>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-eclipse-plugin</artifactId>
Paul Duffine2363012015-11-30 16:20:41 +0000103 <version>2.9</version>
Paul Duffin7fc0b452015-11-10 17:45:15 +0000104 <configuration>
105 <downloadSources>true</downloadSources>
106 <downloadJavadocs>true</downloadJavadocs>
107 <workspace>../eclipse-ws/</workspace>
108 </configuration>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-release-plugin</artifactId>
Paul Duffine2363012015-11-30 16:20:41 +0000113 <version>2.5.1</version>
Paul Duffin7fc0b452015-11-10 17:45:15 +0000114 <configuration>
115 <arguments>-DenableCiProfile=true</arguments>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
Paul Duffine2363012015-11-30 16:20:41 +0000120
Paul Duffin7fc0b452015-11-10 17:45:15 +0000121</project>