1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 6 <parent> 7 <groupId>com.ohos</groupId> 8 <artifactId>hapsigntool</artifactId> 9 <version>${version}</version> 10 </parent> 11 <modelVersion>4.0.0</modelVersion> 12 <artifactId>hap_sign_tool_lib</artifactId> 13 14 <dependencies> 15 <dependency> 16 <groupId>com.google.code.gson</groupId> 17 <artifactId>gson</artifactId> 18 </dependency> 19 <dependency> 20 <groupId>org.bouncycastle</groupId> 21 <artifactId>bcpkix-jdk18on</artifactId> 22 </dependency> 23 <dependency> 24 <groupId>org.apache.logging.log4j</groupId> 25 <artifactId>log4j-core</artifactId> 26 </dependency> 27 <dependency> 28 <groupId>org.apache.logging.log4j</groupId> 29 <artifactId>log4j-api</artifactId> 30 </dependency> 31 <dependency> 32 <groupId>org.junit.jupiter</groupId> 33 <artifactId>junit-jupiter-engine</artifactId> 34 </dependency> 35 <dependency> 36 <groupId>org.junit.jupiter</groupId> 37 <artifactId>junit-jupiter-api</artifactId> 38 </dependency> 39 </dependencies> 40 <build> 41 <plugins> 42 <plugin> 43 <groupId>org.apache.maven.plugins</groupId> 44 <artifactId>maven-compiler-plugin</artifactId> 45 <version>3.12.1</version> 46 <configuration> 47 <source>1.8</source> 48 <target>1.8</target> 49 <encoding>UTF-8</encoding> 50 <showWarnings>true</showWarnings> 51 <compilerArgs> 52 <arg>-Xlint:all</arg> 53 </compilerArgs> 54 </configuration> 55 </plugin> 56 <plugin> 57 <groupId>org.apache.maven.plugins</groupId> 58 <artifactId>maven-surefire-plugin</artifactId> 59 <version>3.2.5</version> 60 </plugin> 61 </plugins> 62 </build> 63</project>