easyAi/pom.xml

48 lines
1.7 KiB
XML
Raw Normal View History

2019-12-21 16:54:06 +08:00
<?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>com.wlld</groupId>
<artifactId>easyAi</artifactId>
2020-10-15 17:04:21 +08:00
<version>1.0.0</version>
2019-12-21 16:54:06 +08:00
2020-02-29 11:30:57 +08:00
<name>easyAi</name>
2019-12-21 16:54:06 +08:00
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
2020-01-18 13:44:09 +08:00
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.51</version>
<scope>test</scope>
</dependency>
</dependencies>
2019-12-21 16:54:06 +08:00
<build>
2020-01-16 15:01:55 +08:00
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.allen.capturewebdata.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
2019-12-21 16:54:06 +08:00
</build>
</project>