123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?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>mldong</artifactId>
- <groupId>com.mldong</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>pom</packaging>
- <artifactId>mldong-framework</artifactId>
- <modules>
- <module>mldong-common-base</module>
- <module>mldong-swagger</module>
- <module>mldong-token-strategy-jwt</module>
- <module>mldong-token-strategy-redis</module>
- <module>mldong-admin-interceptor-service</module>
- <module>mldong-app-interceptor-service</module>
- <module>mldong-captcha-service</module>
- <module>mldong-security</module>
- <module>mldong-sms-service</module>
- </modules>
- <!-- 配置部署的远程仓库 -->
- <distributionManagement>
- <repository>
- <id>nexus-release</id>
- <name>nexus release resp</name>
- <url>http://139.224.28.145:8081/nexus/content/repositories/releases/</url>
- </repository>
- <snapshotRepository>
- <id>nexus-snapshots</id>
- <name>nexus distribution snapshot repository</name>
- <url>http://139.224.28.145:8081/nexus/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|