pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-fta</artifactId>
  6. <version>3.6.2</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>nationrel-module-fta-biz</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.nationrel.boot</groupId>
  13. <artifactId>nationrel-module-fta-api</artifactId>
  14. <version>${nationrelboot.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>commons-httpclient</groupId>
  18. <artifactId>commons-httpclient</artifactId>
  19. <version>3.1</version>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <!-- 打包名称 -->
  24. <finalName>${project.artifactId}</finalName>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-source-plugin</artifactId>
  29. <version>${maven-source-plugin.version}</version>
  30. <executions>
  31. <execution>
  32. <id>attach-sources</id>
  33. <goals>
  34. <goal>jar</goal>
  35. </goals>
  36. </execution>
  37. </executions>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>