shop-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.nb6868.onex</groupId> <artifactId>shop-api</artifactId> <version>1.9.21</version> </dependency>
<?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"> <parent> <artifactId>onex-boot</artifactId> <groupId>com.nb6868.onex</groupId> <version>1.9.21</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <artifactId>shop-api</artifactId> <properties> </properties> <dependencies> <!-- service --> <dependency> <groupId>com.nb6868.onex</groupId> <artifactId>common</artifactId> <version>1.9.21</version> </dependency> </dependencies> <!-- 单个jar --> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <includeSystemScope>true</includeSystemScope> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </project>