104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <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/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <groupId>net.javase.iot</groupId>
 | |
|     <artifactId>onenet-api</artifactId>
 | |
|     <version>1.0.0</version>
 | |
| 
 | |
|     <properties>
 | |
|         <java.version>1.8</java.version>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 | |
|         <junit.version>4.13.1</junit.version>
 | |
|         <lombok.version>1.18.26</lombok.version>
 | |
|         <hutool.version>5.8.20</hutool.version>
 | |
|         <fastjson.version>2.0.23</fastjson.version>
 | |
|         <slf4j.version>1.7.30</slf4j.version>
 | |
|     </properties>
 | |
| 
 | |
|     <dependencies>
 | |
|         <!-- 全局单元测试 -->
 | |
|         <dependency>
 | |
|             <groupId>junit</groupId>
 | |
|             <artifactId>junit</artifactId>
 | |
|             <version>${junit.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.projectlombok</groupId>
 | |
|             <artifactId>lombok</artifactId>
 | |
|             <version>${lombok.version}</version>
 | |
|             <scope>compile</scope>
 | |
|         </dependency>
 | |
|         <!-- huTool 工具包 -->
 | |
|         <dependency>
 | |
|             <groupId>cn.hutool</groupId>
 | |
|             <artifactId>hutool-http</artifactId>
 | |
|             <version>${hutool.version}</version>
 | |
|         </dependency>
 | |
|         <!-- huTool 工具包 End -->
 | |
|         <dependency>
 | |
|             <groupId>com.alibaba</groupId>
 | |
|             <artifactId>fastjson</artifactId>
 | |
|             <version>${fastjson.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>slf4j-api</artifactId>
 | |
|             <version>${slf4j.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>slf4j-simple</artifactId>
 | |
|             <version>${slf4j.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <finalName>onenet-api</finalName>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>3.8.1</version>
 | |
|                 <configuration>
 | |
|                     <source>${java.version}</source>
 | |
|                     <target>${java.version}</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-javadoc-plugin</artifactId>
 | |
|                 <version>3.2.0</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <phase>package</phase>
 | |
|                         <goals>
 | |
|                             <goal>jar</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-source-plugin</artifactId>
 | |
|                 <version>3.2.0</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>nexus-release</id>
 | |
|                         <phase>package</phase>
 | |
|                         <goals>
 | |
|                             <goal>jar-no-fork</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| </project> |