OSDN Git Service

9b2781184e8b1a3753605fa15460b4eac1d5585e
[spring-ext/ozacc-mail.git] / pom.xml
1 <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">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>jp.sourceforge.spring-ext</groupId>
4         <artifactId>ozacc-mail</artifactId>
5         <packaging>jar</packaging>
6         <version>1.2.5-SNAPSHOT</version>
7         <name>ozacc-mail library</name>
8         <description>Library to send and receive emails.</description>
9         <url>http://spring-ext.sourceforge.jp/oml/</url>
10         <licenses>
11                 <license>
12                         <name>GNU Library or "Lesser" General Public License, version 3.0 (LGPL-3.0)</name>
13                         <url>http://www.opensource.org/licenses/lgpl-3.0.html</url>
14                 </license>
15         </licenses>
16         <scm>
17                 <url>http://git.sourceforge.jp/view?p=spring-ext/ozacc-mail.git</url>
18                 <connection>scm:git:git://git.sourceforge.jp/gitroot/spring-ext/ozacc-mail.git</connection>
19                 <developerConnection>scm:git:ssh://xox@git.sourceforge.jp/gitroot/spring-ext/ozacc-mail.git</developerConnection>
20         </scm>
21         <developers>
22                 <developer>
23                         <id>otsuka</id>
24                         <name>otsuka</name>
25                         <email>otsuka@users.sourceforge.jp</email>
26                         <roles>
27                                 <role>Owner</role>
28                                 <role>Committer</role>
29                         </roles>
30                 </developer>
31                 <developer>
32                         <id>iwao.ave</id>
33                         <name>Iwao AVE!</name>
34                         <email>harawata@gmail.com</email>
35                         <roles>
36                                 <role>Committer</role>
37                         </roles>
38                 </developer>
39         </developers>
40         <dependencies>
41                 <dependency>
42                         <groupId>junit</groupId>
43                         <artifactId>junit</artifactId>
44                         <version>3.8.1</version>
45                         <scope>test</scope>
46                 </dependency>
47                 <dependency>
48                         <groupId>javax.mail</groupId>
49                         <artifactId>mail</artifactId>
50                         <version>1.4</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>javax.activation</groupId>
54                         <artifactId>activation</artifactId>
55                         <version>1.1</version>
56                 </dependency>
57                 <dependency>
58                         <groupId>commons-logging</groupId>
59                         <artifactId>commons-logging</artifactId>
60                         <version>1.0.4</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>log4j</groupId>
64                         <artifactId>log4j</artifactId>
65                         <version>1.2.8</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>jdom</groupId>
69                         <artifactId>jdom</artifactId>
70                         <version>1.0</version>
71                         <scope>provided</scope>
72                 </dependency>
73                 <dependency>
74                         <groupId>org.apache.velocity</groupId>
75                         <artifactId>velocity</artifactId>
76                         <version>1.7</version>
77                         <scope>provided</scope>
78                 </dependency>
79                 <dependency>
80                         <groupId>quartz</groupId>
81                         <artifactId>quartz</artifactId>
82                         <version>1.4.0</version>
83                         <scope>provided</scope>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.springframework</groupId>
87                         <artifactId>spring</artifactId>
88                         <version>2.5</version>
89                         <scope>provided</scope>
90                 </dependency>
91                 <dependency>
92                         <groupId>org.jvnet.mock-javamail</groupId>
93                         <artifactId>mock-javamail</artifactId>
94                         <version>1.9</version>
95                         <scope>test</scope>
96                 </dependency>
97         </dependencies>
98         <build>
99                 <resources>
100                         <resource>
101                                 <directory>${project.build.sourceDirectory}</directory>
102                                 <includes>
103                                         <include>**/*.dtd</include>
104                                 </includes>
105                         </resource>
106                 </resources>
107                 <testResources>
108                         <testResource>
109                                 <directory>${project.build.testSourceDirectory}</directory>
110                                 <excludes>
111                                         <exclude>**/*.java</exclude>
112                                 </excludes>
113                         </testResource>
114                 </testResources>
115                 <pluginManagement>
116                         <plugins>
117                                 <plugin>
118                                         <artifactId>maven-compiler-plugin</artifactId>
119                                         <version>2.0.2</version>
120                                         <configuration>
121                                                 <source>1.4</source>
122                                                 <target>1.4</target>
123                                                 <encoding>UTF-8</encoding>
124                                         </configuration>
125                                 </plugin>
126                         </plugins>
127                 </pluginManagement>
128                 <plugins>
129                         <plugin>
130                                 <groupId>org.apache.maven.plugins</groupId>
131                                 <artifactId>maven-release-plugin</artifactId>
132                         </plugin>
133                         <plugin>
134                                 <groupId>org.codehaus.mojo</groupId>
135                                 <artifactId>animal-sniffer-maven-plugin</artifactId>
136                                 <version>1.7</version>
137                                 <executions>
138                                         <execution>
139                                                 <id>check-java-version</id>
140                                                 <phase>verify</phase>
141                                                 <goals>
142                                                         <goal>check</goal>
143                                                 </goals>
144                                                 <configuration>
145                                                         <signature>
146                                                                 <groupId>org.codehaus.mojo.signature</groupId>
147                                                                 <artifactId>java14-sun</artifactId>
148                                                                 <version>1.0</version>
149                                                         </signature>
150                                                 </configuration>
151                                         </execution>
152                                 </executions>
153                         </plugin>
154                 </plugins>
155         </build>
156         <parent>
157                 <groupId>org.sonatype.oss</groupId>
158                 <artifactId>oss-parent</artifactId>
159                 <version>7</version>
160         </parent>
161 </project>