<?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>
    <artifactId>beast-cart-api</artifactId>
    <name>beast-cart-api</name>
    <version>2.4.6-SNAPSHOT</version>

	<parent>
		<groupId>com.thebeastshop</groupId>
		<artifactId>base</artifactId>
		<version>2.1.0</version>
	</parent>

	<properties>
		<!-- 暂时无法拆分依赖 merchandise-api -->
		<pegasus-merchandise-api.version>3.12.1</pegasus-merchandise-api.version>
		<beast-member-api.version>3.4.0</beast-member-api.version>
		<beast-configuration-api.version>1.6.7-SNAPSHOT</beast-configuration-api.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.thebeastshop.pegasus</groupId>
			<artifactId>pegasus-merchandise-api</artifactId>
			<version>${pegasus-merchandise-api.version}</version>
			<exclusions>
				<exclusion>
					<artifactId>log4j</artifactId>
					<groupId>log4j</groupId>
				</exclusion>
				<exclusion>
					<artifactId>spring-web</artifactId>
					<groupId>org.springframework</groupId>
				</exclusion>
				<exclusion>
					<artifactId>spring-webmvc</artifactId>
					<groupId>org.springframework</groupId>
				</exclusion>
				<exclusion>
					<artifactId>hibernate-validator</artifactId>
					<groupId>org.hibernate</groupId>
				</exclusion>
				<exclusion>
					<artifactId>beast-kit-generic</artifactId>
					<groupId>com.thebeastshop</groupId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>com.thebeastshop</groupId>
			<artifactId>beast-member-api</artifactId>
			<version>${beast-member-api.version}</version>
		</dependency>
		<dependency>
			<groupId>com.thebeastshop</groupId>
			<artifactId>beast-configuration-api</artifactId>
			<version>${beast-configuration-api.version}</version>
		</dependency>
		<dependency>
			<groupId>com.thebeastshop</groupId>
			<artifactId>hotlink-common</artifactId>
			<version>1.0.12</version>
		</dependency>
		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>3.0.1</version>
				<configuration>
					<attach>true</attach>
				</configuration>
				<executions>
					<execution>
						<phase>compile</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
