1<?xml version="1.0" encoding="UTF-8"?> 2<!-- Copyright (c) 2021 Huawei Device Co., Ltd. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 17 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 18 <modelVersion>4.0.0</modelVersion> 19 20 <groupId>ohos.global</groupId> 21 <artifactId>lite-data-tool</artifactId> 22 <version>1.0</version> 23 24 <name>lite-data-tool</name> 25 <url>http://www.example.com</url> 26 27 <properties> 28 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 29 <maven.compiler.source>1.8</maven.compiler.source> 30 <maven.compiler.target>1.8</maven.compiler.target> 31 </properties> 32 33 <dependencies> 34 <dependency> 35 <groupId>commons-beanutils</groupId> 36 <artifactId>commons-beanutils</artifactId> 37 <version>1.9.3</version> 38 </dependency> 39 <dependency> 40 <groupId>commons-collections</groupId> 41 <artifactId>commons-collections</artifactId> 42 <version>3.2.1</version> 43 </dependency> 44 <dependency> 45 <groupId>commons-lang</groupId> 46 <artifactId>commons-lang</artifactId> 47 <version>2.6</version> 48 </dependency> 49 <dependency> 50 <groupId>commons-logging</groupId> 51 <artifactId>commons-logging</artifactId> 52 <version>1.1.1</version> 53 </dependency> 54 <dependency> 55 <groupId>net.sf.ezmorph</groupId> 56 <artifactId>ezmorph</artifactId> 57 <version>1.0.6</version> 58 </dependency> 59 <dependency> 60 <groupId>net.sf.json-lib</groupId> 61 <artifactId>json-lib</artifactId> 62 <version>2.2.3</version> 63 <classifier>jdk15</classifier><!-- 指定jdk版本 --> 64 </dependency> 65 <dependency> 66 <groupId>junit</groupId> 67 <artifactId>junit</artifactId> 68 <version>4.11</version> 69 <scope>test</scope> 70 </dependency> 71 <dependency> 72 <groupId>org.codehaus.jackson</groupId> 73 <artifactId>jackson-core-asl</artifactId> 74 <version>1.9.13</version> 75 </dependency> 76 <dependency> 77 <groupId>com.fasterxml.jackson.core</groupId> 78 <artifactId>jackson-databind</artifactId> 79 <version>2.7.0</version> 80 </dependency> 81 <dependency> 82 <groupId>org.codehaus.jackson</groupId> 83 <artifactId>jackson-mapper-asl</artifactId> 84 <version>1.9.13</version> 85</dependency> 86 <dependency> 87 <groupId>com.ibm.icu</groupId> 88 <artifactId>icu4j</artifactId> 89 <version>67.1</version> 90</dependency> 91 </dependencies> 92 93 <build> 94 <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> 95 <plugins> 96 <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> 97 <plugin> 98 <artifactId>maven-clean-plugin</artifactId> 99 <version>3.1.0</version> 100 </plugin> 101 <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> 102 <plugin> 103 <artifactId>maven-resources-plugin</artifactId> 104 <version>3.0.2</version> 105 </plugin> 106 <plugin> 107 <artifactId>maven-compiler-plugin</artifactId> 108 <version>3.8.0</version> 109 </plugin> 110 <plugin> 111 <artifactId>maven-surefire-plugin</artifactId> 112 <version>2.22.1</version> 113 </plugin> 114 <plugin> 115 <artifactId>maven-jar-plugin</artifactId> 116 <version>3.0.2</version> 117 </plugin> 118 <plugin> 119 <artifactId>maven-install-plugin</artifactId> 120 <version>2.5.2</version> 121 </plugin> 122 <plugin> 123 <artifactId>maven-deploy-plugin</artifactId> 124 <version>2.8.2</version> 125 </plugin> 126 <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> 127 <plugin> 128 <artifactId>maven-site-plugin</artifactId> 129 <version>3.7.1</version> 130 </plugin> 131 <plugin> 132 <artifactId>maven-project-info-reports-plugin</artifactId> 133 <version>3.0.0</version> 134 </plugin> 135 </plugins> 136 </pluginManagement> 137 </build> 138</project> 139