OSDN Git Service

909bf626f285734e9b93a8d71d7970fbc120a912
[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         <distributionManagement>
103                 <snapshotRepository>
104                         <id>ossrh</id>
105                         <url>https://oss.sonatype.org/content/repositories/snapshots</url>
106                 </snapshotRepository>
107                 <repository>
108                         <id>ossrh</id>
109                         <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
110                 </repository>
111         </distributionManagement>
112         <build>
113                 <resources>
114                         <resource>
115                                 <directory>${project.build.sourceDirectory}</directory>
116                                 <includes>
117                                         <include>**/*.dtd</include>
118                                 </includes>
119                         </resource>
120                 </resources>
121                 <testResources>
122                         <testResource>
123                                 <directory>${project.build.testSourceDirectory}</directory>
124                                 <excludes>
125                                         <exclude>**/*.java</exclude>
126                                 </excludes>
127                         </testResource>
128                 </testResources>
129                 <pluginManagement>
130                         <plugins>
131                                 <plugin>
132                                         <artifactId>maven-compiler-plugin</artifactId>
133                                         <version>2.0.2</version>
134                                         <configuration>
135                                                 <source>1.4</source>
136                                                 <target>1.4</target>
137                                                 <encoding>UTF-8</encoding>
138                                         </configuration>
139                                 </plugin>
140                         </plugins>
141                 </pluginManagement>
142                 <plugins>
143                         <plugin>
144                                 <groupId>org.apache.maven.plugins</groupId>
145                                 <artifactId>maven-release-plugin</artifactId>
146                         </plugin>
147                         <plugin>
148                                 <groupId>org.codehaus.mojo</groupId>
149                                 <artifactId>animal-sniffer-maven-plugin</artifactId>
150                                 <version>1.11</version>
151                                 <executions>
152                                         <execution>
153                                                 <id>check-java-version</id>
154                                                 <phase>verify</phase>
155                                                 <goals>
156                                                         <goal>check</goal>
157                                                 </goals>
158                                                 <configuration>
159                                                         <signature>
160                                                                 <groupId>org.codehaus.mojo.signature</groupId>
161                                                                 <artifactId>java14</artifactId>
162                                                                 <version>1.0</version>
163                                                         </signature>
164                                                 </configuration>
165                                         </execution>
166                                 </executions>
167                         </plugin>
168                         <plugin>
169                                 <groupId>org.apache.maven.plugins</groupId>
170                                 <artifactId>maven-source-plugin</artifactId>
171                                 <version>2.2.1</version>
172                                 <executions>
173                                         <execution>
174                                                 <id>attach-sources</id>
175                                                 <goals>
176                                                         <goal>jar-no-fork</goal>
177                                                 </goals>
178                                         </execution>
179                                 </executions>
180                         </plugin>
181                         <plugin>
182                                 <groupId>org.apache.maven.plugins</groupId>
183                                 <artifactId>maven-javadoc-plugin</artifactId>
184                                 <version>2.9.1</version>
185                                 <executions>
186                                         <execution>
187                                                 <id>attach-javadocs</id>
188                                                 <goals>
189                                                         <goal>jar</goal>
190                                                 </goals>
191                                                 <configuration>
192                                                         <additionalparam>-Xdoclint:none</additionalparam>
193                                                 </configuration>
194                                         </execution>
195                                 </executions>
196                         </plugin>
197                         <plugin>
198                                 <groupId>org.apache.maven.plugins</groupId>
199                                 <artifactId>maven-gpg-plugin</artifactId>
200                                 <version>1.5</version>
201                                 <executions>
202                                         <execution>
203                                                 <id>sign-artifacts</id>
204                                                 <phase>verify</phase>
205                                                 <goals>
206                                                         <goal>sign</goal>
207                                                 </goals>
208                                         </execution>
209                                 </executions>
210                         </plugin>
211                         <plugin>
212                                 <groupId>org.sonatype.plugins</groupId>
213                                 <artifactId>nexus-staging-maven-plugin</artifactId>
214                                 <version>1.6.3</version>
215                                 <extensions>true</extensions>
216                                 <configuration>
217                                         <serverId>ossrh</serverId>
218                                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>
219                                         <autoReleaseAfterClose>true</autoReleaseAfterClose>
220                                 </configuration>
221                         </plugin>
222                 </plugins>
223         </build>
224 </project>