pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.mokasz</groupId>
  6. <artifactId>fw-sample-rpc</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>fw-sample-rpc</name>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. </properties>
  14. <distributionManagement>
  15. <repository>
  16. <id>rdc-releases</id>
  17. <url>https://packages.aliyun.com/maven/repository/2094014-release-JarWF2/</url>
  18. </repository>
  19. <snapshotRepository>
  20. <id>rdc-snapshots</id>
  21. <url>https://packages.aliyun.com/maven/repository/2094014-snapshot-cjCh4F/</url>
  22. </snapshotRepository>
  23. </distributionManagement>
  24. <build>
  25. <plugins>
  26. <!--配置生成源码包-->
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-source-plugin</artifactId>
  30. <version>3.0.1</version>
  31. <executions>
  32. <execution>
  33. <id>attach-sources</id>
  34. <goals>
  35. <goal>jar</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>