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

« back to all changes in this revision

Viewing changes to doxia-modules/doxia-module-fml/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:
20
20
-->
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
  <modelVersion>4.0.0</modelVersion>
 
24
 
23
25
  <parent>
24
26
    <artifactId>doxia-modules</artifactId>
25
27
    <groupId>org.apache.maven.doxia</groupId>
26
 
    <version>1.0-alpha-11</version>
 
28
    <version>1.1</version>
 
29
    <relativePath>../pom.xml</relativePath>
27
30
  </parent>
28
 
  <modelVersion>4.0.0</modelVersion>
 
31
 
29
32
  <artifactId>doxia-module-fml</artifactId>
 
33
 
30
34
  <name>Doxia :: FML Module</name>
31
35
  <description>A Doxia module for FML source documents.</description>
32
36
 
 
37
  <dependencies>
 
38
    <dependency>
 
39
      <groupId>org.codehaus.plexus</groupId>
 
40
      <artifactId>plexus-utils</artifactId>
 
41
    </dependency>
 
42
 
 
43
    <!-- test -->
 
44
    <dependency>
 
45
      <groupId>org.apache.maven.doxia</groupId>
 
46
      <artifactId>doxia-test-docs</artifactId>
 
47
      <scope>test</scope>
 
48
    </dependency>
 
49
    <dependency>
 
50
      <groupId>xerces</groupId>
 
51
      <artifactId>xercesImpl</artifactId>
 
52
      <version>2.8.1</version>
 
53
      <scope>test</scope>
 
54
    </dependency>
 
55
  </dependencies>
 
56
 
33
57
  <build>
34
58
    <plugins>
35
59
      <plugin>
41
65
            <phase>generate-sources</phase>
42
66
            <goals>
43
67
              <goal>java</goal>
44
 
              <goal>xsd</goal>
45
 
            </goals>
46
 
            <configuration>
47
 
              <models>
48
 
                <model>src/main/mdo/fml.mdo</model>
49
 
              </models>
50
 
              <version>1.0.0</version>
51
 
            </configuration>
52
 
          </execution>
53
 
          <execution>
54
 
            <id>descriptor-site</id>
55
 
            <phase>pre-site</phase>
56
 
            <goals>
57
 
              <goal>xdoc</goal>
58
 
              <goal>xsd</goal>
59
68
            </goals>
60
69
            <configuration>
61
70
              <models>
68
77
      </plugin>
69
78
    </plugins>
70
79
  </build>
71
 
  <dependencies>
72
 
    <dependency>
73
 
      <groupId>org.codehaus.plexus</groupId>
74
 
      <artifactId>plexus-utils</artifactId>
75
 
    </dependency>
76
 
  </dependencies>
 
80
 
 
81
  <profiles>
 
82
    <profile>
 
83
      <id>reporting</id>
 
84
      <build>
 
85
        <plugins>
 
86
          <plugin>
 
87
            <groupId>org.apache.maven.plugins</groupId>
 
88
            <artifactId>maven-antrun-plugin</artifactId>
 
89
            <executions>
 
90
              <execution>
 
91
                <phase>site</phase>
 
92
                <configuration>
 
93
                  <tasks>
 
94
                    <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" />
 
95
 
 
96
                    <mkdir dir="${reporting.outputDirectory}/xsddoc" />
 
97
 
 
98
                    <xsddoc file="${basedir}/src/main/resources/fml-1.0.xsd" out="${basedir}/${reporting.outputDirectory}/xsddoc" doctitle="Reference of Schema FML 1.0" verbose="true" />
 
99
                  </tasks>
 
100
                </configuration>
 
101
                <goals>
 
102
                  <goal>run</goal>
 
103
                </goals>
 
104
              </execution>
 
105
            </executions>
 
106
            <dependencies>
 
107
              <dependency>
 
108
                <groupId>xsddoc</groupId>
 
109
                <artifactId>xsddoc</artifactId>
 
110
                <version>1.0</version>
 
111
              </dependency>
 
112
              <dependency>
 
113
                <groupId>xalan</groupId>
 
114
                <artifactId>xalan</artifactId>
 
115
                <version>2.7.1</version>
 
116
              </dependency>
 
117
            </dependencies>
 
118
          </plugin>
 
119
        </plugins>
 
120
      </build>
 
121
    </profile>
 
122
  </profiles>
77
123
</project>
 
 
b'\\ No newline at end of file'