OSDN Git Service

Updated dependencies
authorIwao AVE! <harawata@gmail.com>
Tue, 22 Nov 2022 06:16:46 +0000 (15:16 +0900)
committerIwao AVE! <harawata@gmail.com>
Tue, 22 Nov 2022 09:07:21 +0000 (18:07 +0900)
- Bumped minor version as it requires Java 1.8 now.
- Replaced Log4J with Reload4J (it's used only for tests, though)

pom.xml

diff --git a/pom.xml b/pom.xml
index ca49efe..b3d2f9f 100755 (executable)
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
        <groupId>jp.sourceforge.spring-ext</groupId>
        <artifactId>ozacc-mail</artifactId>
        <packaging>jar</packaging>
-       <version>1.2.6-SNAPSHOT</version>
+       <version>1.3.0-SNAPSHOT</version>
        <name>ozacc-mail library</name>
        <description>Library to send and receive emails.</description>
        <url>http://spring-ext.sourceforge.jp/oml/</url>
                <maven.compiler.testSource>1.8</maven.compiler.testSource>
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+               <spring.version>5.3.24</spring.version>
        </properties>
        <dependencies>
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
-                       <version>3.8.1</version>
+                       <version>4.13.2</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
-                       <groupId>javax.mail</groupId>
-                       <artifactId>mail</artifactId>
-                       <version>1.4</version>
-                       <scope>provided</scope>
+                       <groupId>com.sun.mail</groupId>
+                       <artifactId>mailapi</artifactId>
+                       <version>1.6.2</version>
                </dependency>
                <dependency>
                        <groupId>javax.activation</groupId>
                        <artifactId>activation</artifactId>
-                       <version>1.1</version>
+                       <version>1.1.1</version>
                        <scope>provided</scope>
                </dependency>
                <dependency>
                        <groupId>commons-logging</groupId>
                        <artifactId>commons-logging</artifactId>
-                       <version>1.0.4</version>
+                       <version>1.2</version>
                        <scope>provided</scope>
                </dependency>
                <dependency>
-                       <groupId>log4j</groupId>
-                       <artifactId>log4j</artifactId>
-                       <version>1.2.8</version>
+                       <groupId>ch.qos.reload4j</groupId>
+                       <artifactId>reload4j</artifactId>
+                       <version>1.2.22</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                <dependency>
                        <groupId>quartz</groupId>
                        <artifactId>quartz</artifactId>
-                       <version>1.4.0</version>
+                       <version>1.5.1</version>
+                       <scope>provided</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-core</artifactId>
+                       <version>${spring.version}</version>
+                       <scope>provided</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-beans</artifactId>
+                       <version>${spring.version}</version>
                        <scope>provided</scope>
                </dependency>
                <dependency>
                        <groupId>org.springframework</groupId>
-                       <artifactId>spring</artifactId>
-                       <version>2.5</version>
+                       <artifactId>spring-context</artifactId>
+                       <version>${spring.version}</version>
+                       <scope>provided</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-context-support</artifactId>
+                       <version>${spring.version}</version>
                        <scope>provided</scope>
                </dependency>
                <dependency>
                        <groupId>org.jvnet.mock-javamail</groupId>
                        <artifactId>mock-javamail</artifactId>
-                       <version>1.9</version>
+                       <version>1.12</version>
                        <scope>test</scope>
                </dependency>
        </dependencies>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-javadoc-plugin</artifactId>
-                               <version>2.10.3</version>
+                               <version>3.0.1</version>
                                <executions>
                                        <execution>
                                                <id>attach-javadocs</id>
                                                </goals>
                                                <configuration>
                                                        <additionalparam>-Xdoclint:none</additionalparam>
+                                                       <additionalOptions>-Xdoclint:none</additionalOptions>
+                                                       <additionalJOption>-Xdoclint:none</additionalJOption>
                                                </configuration>
                                        </execution>
                                </executions>
                                                <goals>
                                                        <goal>sign</goal>
                                                </goals>
+                                               <configuration>
+                                                       <gpgArguments>
+                                                               <arg>--pinentry-mode</arg>
+                                                               <arg>loopback</arg>
+                                                       </gpgArguments>
+                                               </configuration>
                                        </execution>
                                </executions>
                        </plugin>
                        </plugin>
                </plugins>
        </build>
+       <repositories>
+               <repository>
+                       <id>repo.jenkins-ci.org</id>
+                       <url>https://repo.jenkins-ci.org/public/</url>
+               </repository>
+       </repositories>
 </project>