123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.tzld.piaoquan</groupId>
- <artifactId>content-understanding</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>content-understanding-server</artifactId>
- <name>content-understanding-server</name>
- <description>content-understanding-server for Spring Boot</description>
- <properties>
- <java.version>1.8</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.tzld.piaoquan</groupId>
- <artifactId>content-understanding-core</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>content-understanding-server</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.tzld.piaoquan.content.understanding.Application</mainClass>
- <layout>ZIP</layout>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|