| Revision | 2488 (tree) |
|---|---|
| Time | 2022-11-22 16:53:00 |
| Author | t_nakayama1971 |
(empty log message)
| @@ -16,6 +16,73 @@ | ||
| 16 | 16 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 17 | 17 | </properties> |
| 18 | 18 | |
| 19 | + <dependencyManagement> | |
| 20 | + <dependencies> | |
| 21 | + <dependency> | |
| 22 | + <groupId>commons-beanutils</groupId> | |
| 23 | + <artifactId>commons-beanutils</artifactId> | |
| 24 | + <scope>runtime</scope> | |
| 25 | + </dependency> | |
| 26 | + <dependency> | |
| 27 | + <groupId>commons-digester</groupId> | |
| 28 | + <artifactId>commons-digester</artifactId> | |
| 29 | + <scope>runtime</scope> | |
| 30 | + </dependency> | |
| 31 | + <dependency> | |
| 32 | + <groupId>commons-logging</groupId> | |
| 33 | + <artifactId>commons-logging</artifactId> | |
| 34 | + <version>1.2</version> | |
| 35 | + <scope>runtime</scope> | |
| 36 | + </dependency> | |
| 37 | + <dependency> | |
| 38 | + <groupId>org.apache.commons</groupId> | |
| 39 | + <artifactId>commons-collections4</artifactId> | |
| 40 | + <scope>runtime</scope> | |
| 41 | + </dependency> | |
| 42 | + <dependency> | |
| 43 | + <groupId>com.lowagie</groupId> | |
| 44 | + <artifactId>itext</artifactId> | |
| 45 | + <scope>runtime</scope> | |
| 46 | + </dependency> | |
| 47 | + <dependency> | |
| 48 | + <groupId>org.jfree</groupId> | |
| 49 | + <artifactId>jfreechart</artifactId> | |
| 50 | + <scope>runtime</scope> | |
| 51 | + </dependency> | |
| 52 | + <dependency> | |
| 53 | + <groupId>org.jfree</groupId> | |
| 54 | + <artifactId>jcommon</artifactId> | |
| 55 | + <scope>runtime</scope> | |
| 56 | + </dependency> | |
| 57 | + <dependency> | |
| 58 | + <groupId>org.eclipse.jdt</groupId> | |
| 59 | + <artifactId>ecj</artifactId> | |
| 60 | + <scope>runtime</scope> | |
| 61 | + </dependency> | |
| 62 | + <dependency> | |
| 63 | + <groupId>com.fasterxml.jackson.core</groupId> | |
| 64 | + <artifactId>jackson-annotations</artifactId> | |
| 65 | + <scope>runtime</scope> | |
| 66 | + </dependency> | |
| 67 | + <dependency> | |
| 68 | + <groupId>com.fasterxml.jackson.core</groupId> | |
| 69 | + <artifactId>jackson-core</artifactId> | |
| 70 | + <scope>runtime</scope> | |
| 71 | + </dependency> | |
| 72 | + <dependency> | |
| 73 | + <groupId>com.fasterxml.jackson.core</groupId> | |
| 74 | + <artifactId>jackson-databind</artifactId> | |
| 75 | + <scope>runtime</scope> | |
| 76 | + </dependency> | |
| 77 | + <dependency> | |
| 78 | + <groupId>com.fasterxml.jackson.dataformat</groupId> | |
| 79 | + <artifactId>jackson-dataformat-xml</artifactId> | |
| 80 | + <scope>runtime</scope> | |
| 81 | + </dependency> | |
| 82 | + | |
| 83 | + </dependencies> | |
| 84 | + </dependencyManagement> | |
| 85 | + | |
| 19 | 86 | <dependencies> |
| 20 | 87 | <dependency> |
| 21 | 88 | <groupId>org.apache.commons</groupId> |
| @@ -24,17 +91,17 @@ | ||
| 24 | 91 | <scope>compile</scope> |
| 25 | 92 | </dependency> |
| 26 | 93 | <dependency> |
| 94 | + <groupId>org.apache.logging.log4j</groupId> | |
| 95 | + <artifactId>log4j-api</artifactId> | |
| 96 | + <version>2.19.0</version> | |
| 97 | + <scope>compile</scope> | |
| 98 | + </dependency> | |
| 99 | + <dependency> | |
| 27 | 100 | <groupId>net.sf.jasperreports</groupId> |
| 28 | 101 | <artifactId>jasperreports</artifactId> |
| 29 | 102 | <version>6.20.0</version> |
| 30 | 103 | <scope>compile</scope> |
| 31 | 104 | </dependency> |
| 32 | - <dependency> | |
| 33 | - <groupId>org.apache.logging.log4j</groupId> | |
| 34 | - <artifactId>log4j-api</artifactId> | |
| 35 | - <version>2.19.0</version> | |
| 36 | - <scope>compile</scope> | |
| 37 | - </dependency> | |
| 38 | 105 | |
| 39 | 106 | <dependency> |
| 40 | 107 | <groupId>org.junit.jupiter</groupId> |