~ubuntu-branches/ubuntu/vivid/doxia/vivid-proposed

« back to all changes in this revision

Viewing changes to doxia-sink-api/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-10-08 14:20:22 UTC
  • mfrom: (2.3.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091008142022-f6ccxganfr2tbaig
Tags: 1.1-3build1
Upload to karmic, avoiding new version from unstable. LP: #443292.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
<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">
23
23
  <modelVersion>4.0.0</modelVersion>
 
24
 
24
25
  <parent>
25
26
    <artifactId>doxia</artifactId>
26
27
    <groupId>org.apache.maven.doxia</groupId>
27
 
    <version>1.0-alpha-11</version>
 
28
    <version>1.1</version>
 
29
    <relativePath>../pom.xml</relativePath>
28
30
  </parent>
 
31
 
29
32
  <artifactId>doxia-sink-api</artifactId>
30
33
  <name>Doxia :: Sink API</name>
31
34
  <description>Doxia Sink API.</description>
 
35
 
 
36
  <dependencies>
 
37
      <dependency>
 
38
        <groupId>org.apache.maven.doxia</groupId>
 
39
        <artifactId>doxia-logging-api</artifactId>
 
40
      </dependency>
 
41
  </dependencies>
 
42
 
 
43
  <profiles>
 
44
    <profile>
 
45
      <id>reporting</id>
 
46
      <reporting>
 
47
        <plugins>
 
48
          <plugin>
 
49
            <groupId>org.codehaus.mojo</groupId>
 
50
            <artifactId>clirr-maven-plugin</artifactId>
 
51
            <version>2.2.2</version>
 
52
            <configuration>
 
53
              <comparisonVersion>1.0</comparisonVersion>
 
54
            </configuration>
 
55
          </plugin>
 
56
        </plugins>
 
57
      </reporting>
 
58
    </profile>
 
59
  </profiles>
32
60
</project>