| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.mokasz</groupId>
- <artifactId>fw-sample-rpc</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>fw-sample-rpc</name>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <distributionManagement>
- <repository>
- <id>rdc-releases</id>
- <url>https://packages.aliyun.com/maven/repository/2094014-release-JarWF2/</url>
- </repository>
- <snapshotRepository>
- <id>rdc-snapshots</id>
- <url>https://packages.aliyun.com/maven/repository/2094014-snapshot-cjCh4F/</url>
- </snapshotRepository>
- </distributionManagement>
- <build>
- <plugins>
- <!--配置生成源码包-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.0.1</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|