zhw-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.doge618</groupId>
<artifactId>zhw-demo</artifactId>
<version>1.0.2</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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>zhw.cloud.project.parent</groupId>
<artifactId>zhw-cloud-project-parent</artifactId>
<version>1.0.0</version>
</parent>
<groupId>io.github.doge618</groupId>
<artifactId>zhw-demo</artifactId>
<version>1.0.2</version>
<properties>
</properties>
<dependencies>
<dependency>
<groupId>zhw.cloud</groupId>
<artifactId>zhw-security</artifactId>
</dependency>
<dependency>
<groupId>zhw.cloud</groupId>
<artifactId>zhw-web</artifactId>
</dependency>
<dependency>
<groupId>zhw.cloud</groupId>
<artifactId>zhw-cloud-swagger</artifactId>
</dependency>
<dependency>
<groupId>zhw.cloud</groupId>
<artifactId>zhw-datasource</artifactId>
</dependency>
<dependency>
<groupId>zhw.cloud</groupId>
<artifactId>zhw-mybatis</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>${project.groupId}</groupId>-->
<!-- <artifactId>zhw-nacos</artifactId>-->
<!-- <version>${project.parent.version}</version>-->
<!-- </dependency>-->
<!--<dependency>-->
<!--<groupId>mysql</groupId>-->
<!--<artifactId>mysql-connector-java</artifactId>-->
<!--<version>8.0.12</version>-->
<!--</dependency>-->
</dependencies>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<activatedProperties>default</activatedProperties>
</properties>
</profile>
<profile>
<id>test</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<activatedProperties>dev</activatedProperties>
</properties>
</profile>
<profile>
<id>prod</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<activatedProperties>dev</activatedProperties>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>