pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <parent>
  4. <groupId>com.nationrel.boot</groupId>
  5. <artifactId>nationrel-module-rp</artifactId>
  6. <version>3.6.2</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>nationrel-module-rp-biz</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.nationrel.boot</groupId>
  13. <artifactId>nationrel-module-rp-api</artifactId>
  14. <version>${nationrelboot.version}</version>
  15. </dependency>
  16. </dependencies>
  17. <build>
  18. <!-- 打包名称 -->
  19. <finalName>${project.artifactId}</finalName>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-source-plugin</artifactId>
  24. <version>${maven-source-plugin.version}</version>
  25. <executions>
  26. <execution>
  27. <id>attach-sources</id>
  28. <goals>
  29. <goal>jar</goal>
  30. </goals>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>