OSDN Git Service

2ed136b895920338824316602905dfb4a1a7f66a
[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                         <scope>provided</scope>
52                 </dependency>
53                 <dependency>
54                         <groupId>javax.activation</groupId>
55                         <artifactId>activation</artifactId>
56                         <version>1.1</version>
57                         <scope>provided</scope>
58                 </dependency>
59                 <dependency>
60                         <groupId>commons-logging</groupId>
61                         <artifactId>commons-logging</artifactId>
62                         <version>1.0.4</version>
63                         <scope>provided</scope>
64                 </dependency>
65                 <dependency>
66                         <groupId>log4j</groupId>
67                         <artifactId>log4j</artifactId>
68                         <version>1.2.8</version>
69                         <scope>test</scope>
70                 </dependency>
71                 <dependency>
72                         <groupId>jdom</groupId>
73                         <artifactId>jdom</artifactId>
74                         <version>1.0</version>
75                         <scope>provided</scope>
76                 </dependency>
77                 <dependency>
78                         <groupId>org.apache.velocity</groupId>
79                         <artifactId>velocity</artifactId>
80                         <version>1.7</version>
81                         <scope>provided</scope>
82                 </dependency>
83                 <dependency>
84                         <groupId>quartz</groupId>
85                         <artifactId>quartz</artifactId>
86                         <version>1.4.0</version>
87                         <scope>provided</scope>
88                 </dependency>
89                 <dependency>
90                         <groupId>org.springframework</groupId>
91                         <artifactId>spring</artifactId>
92                         <version>2.5</version>
93                         <scope>provided</scope>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.jvnet.mock-javamail</groupId>
97                         <artifactId>mock-javamail</artifactId>
98                         <version>1.9</version>
99                         <scope>test</scope>
100                 </dependency>
101         </dependencies>
102         <build>
103                 <resources>
104                         <resource>
105                                 <directory>${project.build.sourceDirectory}</directory>
106                                 <includes>
107                                         <include>**/*.dtd</include>
108                                 </includes>
109                         </resource>
110                 </resources>
111                 <testResources>
112                         <testResource>
113                                 <directory>${project.build.testSourceDirectory}</directory>
114                                 <excludes>
115                                         <exclude>**/*.java</exclude>
116                                 </excludes>
117                         </testResource>
118                 </testResources>
119                 <pluginManagement>
120                         <plugins>
121                                 <plugin>
122                                         <artifactId>maven-compiler-plugin</artifactId>
123                                         <version>2.0.2</version>
124                                         <configuration>
125                                                 <source>1.4</source>
126                                                 <target>1.4</target>
127                                                 <encoding>UTF-8</encoding>
128                                         </configuration>
129                                 </plugin>
130                         </plugins>
131                 </pluginManagement>
132                 <plugins>
133                         <plugin>
134                                 <groupId>org.apache.maven.plugins</groupId>
135                                 <artifactId>maven-release-plugin</artifactId>
136                         </plugin>
137                         <plugin>
138                                 <groupId>org.codehaus.mojo</groupId>
139                                 <artifactId>animal-sniffer-maven-plugin</artifactId>
140                                 <version>1.11</version>
141                                 <executions>
142                                         <execution>
143                                                 <id>check-java-version</id>
144                                                 <phase>verify</phase>
145                                                 <goals>
146                                                         <goal>check</goal>
147                                                 </goals>
148                                                 <configuration>
149                                                         <signature>
150                                                                 <groupId>org.codehaus.mojo.signature</groupId>
151                                                                 <artifactId>java14</artifactId>
152                                                                 <version>1.0</version>
153                                                         </signature>
154                                                 </configuration>
155                                         </execution>
156                                 </executions>
157                         </plugin>
158                 </plugins>
159         </build>
160         <parent>
161                 <groupId>org.sonatype.oss</groupId>
162                 <artifactId>oss-parent</artifactId>
163                 <version>7</version>
164         </parent>
165 </project>