You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
XML
52 lines
1.5 KiB
XML
11 months ago
|
<?xml version="1.0"?>
|
||
|
<project
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.huatek.frame</groupId>
|
||
|
<artifactId>frame-base</artifactId>
|
||
|
<version>1.0</version>
|
||
|
</parent>
|
||
|
<artifactId>frame-base-common</artifactId>
|
||
|
<name>frame-base-common</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<org.springframework.version>4.3.13.RELEASE</org.springframework.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>javax</groupId>
|
||
|
<artifactId>javaee-api</artifactId>
|
||
|
<version>8.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.huatek.frame</groupId>
|
||
|
<artifactId>frame-base-model</artifactId>
|
||
|
<version>1.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.huatek.frame</groupId>
|
||
|
<artifactId>frame-base-service</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>frame-base-common</finalName>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.7.0</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|