12345678910111213141516171819202122232425262728293031323334353637 |
- <?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>
- <groupId>com.nationrel.boot</groupId>
- <artifactId>nationrel-module-rga</artifactId>
- <version>3.6.2</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>nationrel-module-rga-biz</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.nationrel.boot</groupId>
- <artifactId>nationrel-module-rga-api</artifactId>
- <version>${nationrelboot.version}</version>
- </dependency>
- </dependencies>
- <build>
- <!-- 打包名称 -->
- <finalName>${project.artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>${maven-source-plugin.version}</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|