OSDN Git Service

Update JDOM
[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.3.0-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                 <tag>HEAD</tag>
21         </scm>
22         <developers>
23                 <developer>
24                         <id>otsuka</id>
25                         <name>otsuka</name>
26                         <email>otsuka@users.sourceforge.jp</email>
27                         <roles>
28                                 <role>Owner</role>
29                                 <role>Committer</role>
30                         </roles>
31                 </developer>
32                 <developer>
33                         <id>iwao.ave</id>
34                         <name>Iwao AVE!</name>
35                         <email>harawata@gmail.com</email>
36                         <roles>
37                                 <role>Committer</role>
38                         </roles>
39                 </developer>
40         </developers>
41         <properties>
42                 <maven.compiler.source>1.8</maven.compiler.source>
43                 <maven.compiler.target>1.8</maven.compiler.target>
44                 <maven.compiler.testTarget>1.8</maven.compiler.testTarget>
45                 <maven.compiler.testSource>1.8</maven.compiler.testSource>
46                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
48                 <spring.version>5.3.24</spring.version>
49         </properties>
50         <dependencies>
51                 <dependency>
52                         <groupId>junit</groupId>
53                         <artifactId>junit</artifactId>
54                         <version>4.13.2</version>
55                         <scope>test</scope>
56                 </dependency>
57                 <dependency>
58                         <groupId>com.sun.mail</groupId>
59                         <artifactId>mailapi</artifactId>
60                         <version>1.6.2</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>javax.activation</groupId>
64                         <artifactId>activation</artifactId>
65                         <version>1.1.1</version>
66                         <scope>provided</scope>
67                 </dependency>
68                 <dependency>
69                         <groupId>commons-logging</groupId>
70                         <artifactId>commons-logging</artifactId>
71                         <version>1.2</version>
72                         <scope>provided</scope>
73                 </dependency>
74                 <dependency>
75                         <groupId>ch.qos.reload4j</groupId>
76                         <artifactId>reload4j</artifactId>
77                         <version>1.2.22</version>
78                         <scope>test</scope>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.jdom</groupId>
82                         <artifactId>jdom2</artifactId>
83                         <version>2.0.6.1</version>
84                         <scope>provided</scope>
85                 </dependency>
86                 <dependency>
87                         <groupId>org.apache.velocity</groupId>
88                         <artifactId>velocity-engine-core</artifactId>
89                         <version>2.3</version>
90                         <scope>provided</scope>
91                 </dependency>
92                 <dependency>
93                         <groupId>quartz</groupId>
94                         <artifactId>quartz</artifactId>
95                         <version>1.5.1</version>
96                         <scope>provided</scope>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.springframework</groupId>
100                         <artifactId>spring-core</artifactId>
101                         <version>${spring.version}</version>
102                         <scope>provided</scope>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.springframework</groupId>
106                         <artifactId>spring-beans</artifactId>
107                         <version>${spring.version}</version>
108                         <scope>provided</scope>
109                 </dependency>
110                 <dependency>
111                         <groupId>org.springframework</groupId>
112                         <artifactId>spring-context</artifactId>
113                         <version>${spring.version}</version>
114                         <scope>provided</scope>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.springframework</groupId>
118                         <artifactId>spring-context-support</artifactId>
119                         <version>${spring.version}</version>
120                         <scope>provided</scope>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.jvnet.mock-javamail</groupId>
124                         <artifactId>mock-javamail</artifactId>
125                         <version>1.12</version>
126                         <scope>test</scope>
127                 </dependency>
128         </dependencies>
129         <distributionManagement>
130                 <snapshotRepository>
131                         <id>ossrh</id>
132                         <url>https://oss.sonatype.org/content/repositories/snapshots</url>
133                 </snapshotRepository>
134                 <repository>
135                         <id>ossrh</id>
136                         <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
137                 </repository>
138         </distributionManagement>
139         <build>
140                 <resources>
141                         <resource>
142                                 <directory>${project.build.sourceDirectory}</directory>
143                                 <includes>
144                                         <include>**/*.dtd</include>
145                                 </includes>
146                         </resource>
147                 </resources>
148                 <testResources>
149                         <testResource>
150                                 <directory>${project.build.testSourceDirectory}</directory>
151                                 <excludes>
152                                         <exclude>**/*.java</exclude>
153                                 </excludes>
154                         </testResource>
155                 </testResources>
156                 <pluginManagement>
157                         <plugins>
158                                 <plugin>
159                                         <artifactId>maven-compiler-plugin</artifactId>
160                                         <version>3.3</version>
161                                 </plugin>
162                         </plugins>
163                 </pluginManagement>
164                 <plugins>
165                         <plugin>
166                                 <groupId>org.apache.maven.plugins</groupId>
167                                 <artifactId>maven-release-plugin</artifactId>
168                         </plugin>
169                         <plugin>
170                                 <groupId>org.codehaus.mojo</groupId>
171                                 <artifactId>animal-sniffer-maven-plugin</artifactId>
172                                 <version>1.14</version>
173                                 <executions>
174                                         <execution>
175                                                 <id>check-java-version</id>
176                                                 <phase>verify</phase>
177                                                 <goals>
178                                                         <goal>check</goal>
179                                                 </goals>
180                                                 <configuration>
181                                                         <signature>
182                                                                 <groupId>org.codehaus.mojo.signature</groupId>
183                                                                 <artifactId>java18</artifactId>
184                                                                 <version>1.0</version>
185                                                         </signature>
186                                                 </configuration>
187                                         </execution>
188                                 </executions>
189                         </plugin>
190                         <plugin>
191                                 <groupId>org.apache.maven.plugins</groupId>
192                                 <artifactId>maven-source-plugin</artifactId>
193                                 <version>3.0.0</version>
194                                 <executions>
195                                         <execution>
196                                                 <id>attach-sources</id>
197                                                 <goals>
198                                                         <goal>jar-no-fork</goal>
199                                                 </goals>
200                                         </execution>
201                                 </executions>
202                         </plugin>
203                         <plugin>
204                                 <groupId>org.apache.maven.plugins</groupId>
205                                 <artifactId>maven-javadoc-plugin</artifactId>
206                                 <version>3.0.1</version>
207                                 <executions>
208                                         <execution>
209                                                 <id>attach-javadocs</id>
210                                                 <goals>
211                                                         <goal>jar</goal>
212                                                 </goals>
213                                                 <configuration>
214                                                         <additionalparam>-Xdoclint:none</additionalparam>
215                                                         <additionalOptions>-Xdoclint:none</additionalOptions>
216                                                         <additionalJOption>-Xdoclint:none</additionalJOption>
217                                                 </configuration>
218                                         </execution>
219                                 </executions>
220                         </plugin>
221                         <plugin>
222                                 <groupId>org.apache.maven.plugins</groupId>
223                                 <artifactId>maven-gpg-plugin</artifactId>
224                                 <version>1.6</version>
225                                 <executions>
226                                         <execution>
227                                                 <id>sign-artifacts</id>
228                                                 <phase>verify</phase>
229                                                 <goals>
230                                                         <goal>sign</goal>
231                                                 </goals>
232                                                 <configuration>
233                                                         <gpgArguments>
234                                                                 <arg>--pinentry-mode</arg>
235                                                                 <arg>loopback</arg>
236                                                         </gpgArguments>
237                                                 </configuration>
238                                         </execution>
239                                 </executions>
240                         </plugin>
241                         <plugin>
242                                 <groupId>org.sonatype.plugins</groupId>
243                                 <artifactId>nexus-staging-maven-plugin</artifactId>
244                                 <version>1.6.8</version>
245                                 <extensions>true</extensions>
246                                 <configuration>
247                                         <serverId>ossrh</serverId>
248                                         <nexusUrl>https://oss.sonatype.org/</nexusUrl>
249                                         <autoReleaseAfterClose>false</autoReleaseAfterClose>
250                                 </configuration>
251                         </plugin>
252                 </plugins>
253         </build>
254         <repositories>
255                 <repository>
256                         <id>repo.jenkins-ci.org</id>
257                         <url>https://repo.jenkins-ci.org/public/</url>
258                 </repository>
259         </repositories>
260 </project>