source: contrib/MailArchiver/sources/vendor/mime4j/apache-mime4j-0.7-SNAPSHOT-20110327.010440-17/dom/pom.xml @ 6785

Revision 6785, 3.0 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado codigo do MailArchiver?. Documentação na subpasta DOCS.

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<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">
3  <!--
4    Licensed to the Apache Software Foundation (ASF) under one
5    or more contributor license agreements.  See the NOTICE file
6    distributed with this work for additional information
7    regarding copyright ownership.  The ASF licenses this file
8    to you under the Apache License, Version 2.0 (the
9    "License"); you may not use this file except in compliance
10    with the License.  You may obtain a copy of the License at
11 
12      http://www.apache.org/licenses/LICENSE-2.0
13 
14    Unless required by applicable law or agreed to in writing,
15    software distributed under the License is distributed on an
16    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17    KIND, either express or implied.  See the License for the
18    specific language governing permissions and limitations
19    under the License.   
20  -->
21  <parent>
22    <artifactId>apache-mime4j-project</artifactId>
23    <groupId>org.apache.james</groupId>
24    <version>0.7-SNAPSHOT</version>
25    <!-- Inherit from project -->
26    <relativePath>../pom.xml</relativePath>
27  </parent>
28  <modelVersion>4.0.0</modelVersion>
29  <groupId>org.apache.james</groupId>
30  <artifactId>apache-mime4j-dom</artifactId>
31  <name>Apache JAMES Mime4j (DOM)</name>
32  <version>0.7-SNAPSHOT</version>
33  <description>Java MIME Document Object Model</description>
34
35   <build>
36    <plugins>
37       <plugin>
38        <groupId>org.codehaus.mojo</groupId>
39        <artifactId>javacc-maven-plugin</artifactId>
40        <version>2.6</version>
41        <executions>
42          <execution>
43            <id>generate-jjtree</id>
44            <phase>generate-sources</phase>
45            <goals>
46              <goal>jjtree-javacc</goal>
47            </goals>
48          </execution>
49          <execution>
50            <id>generate-javacc</id>
51            <phase>generate-sources</phase>
52            <goals>
53              <goal>javacc</goal>
54            </goals>
55          </execution>
56        </executions>
57      </plugin>
58    </plugins>
59  </build> 
60
61  <dependencies>
62    <dependency>
63      <groupId>org.apache.james</groupId>
64      <artifactId>apache-mime4j-core</artifactId>
65      <version>${project.version}</version>
66      <scope>compile</scope>
67    </dependency>
68    <dependency>
69      <groupId>org.apache.james</groupId>
70      <artifactId>apache-mime4j-core</artifactId>
71      <version>${project.version}</version>
72      <type>test-jar</type>
73      <scope>test</scope>
74    </dependency>
75    <dependency>
76      <groupId>junit</groupId>
77      <artifactId>junit</artifactId>
78      <type>jar</type>
79      <!--  Removed as a workaround for an unidentified M2 bug -->
80      <scope>test</scope>
81      <optional>true</optional>
82    </dependency>
83    <dependency>
84      <groupId>commons-io</groupId>
85      <artifactId>commons-io</artifactId>
86      <scope>test</scope>
87      <optional>true</optional>
88    </dependency>
89  </dependencies>
90</project>
Note: See TracBrowser for help on using the repository browser.