• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?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">
21  <modelVersion>4.0.0</modelVersion>
22  <parent>
23    <groupId>org.sonatype.oss</groupId>
24    <artifactId>oss-parent</artifactId>
25    <version>7</version>
26  </parent>
27
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>
34  <description>Caliper Examples</description>
35
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
55  <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>
62
63  <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>
68
69  <issueManagement>
70    <system>Google Code Issue Tracking</system>
71    <url>http://code.google.com/p/caliper/issues/list</url>
72  </issueManagement>
73
74  <dependencies>
75    <dependency>
76      <groupId>com.google.caliper</groupId>
77      <artifactId>caliper</artifactId>
78      <version>1.0-SNAPSHOT</version>
79    </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>
87
88  <build>
89    <defaultGoal>package</defaultGoal>
90    <plugins>
91      <plugin>
92        <groupId>org.apache.maven.plugins</groupId>
93        <artifactId>maven-compiler-plugin</artifactId>
94        <version>3.2</version>
95        <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>
103        <version>2.9</version>
104        <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>
113        <version>2.5.1</version>
114        <configuration>
115          <arguments>-DenableCiProfile=true</arguments>
116        </configuration>
117      </plugin>
118    </plugins>
119  </build>
120
121</project>
122