pom.xml.svn-base

来自「portal越来越流行了」· SVN-BASE 代码 · 共 57 行

SVN-BASE
57
字号
<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/maven-v4_0_0.xsd">    <parent>        <artifactId>pluto</artifactId>        <groupId>org.apache.pluto</groupId>        <version>2.0.0-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>pluto-site</artifactId>    <name>Pluto Website Documentation</name>    <url>http://portals.apache.org/pluto/</url>    <inceptionYear>2001</inceptionYear>    <packaging>pom</packaging>    <distributionManagement>        <site>            <id>website</id>            <url>scp://people.apache.org/www/portals.apache.org/pluto</url>        </site>    </distributionManagement>    <build>        <plugins>            <plugin>                <artifactId>maven-assembly-plugin</artifactId>                <version>2.1</version>                <configuration>                    <descriptors>                        <descriptor>${basedir}/src/assembly/bin.xml</descriptor>                    </descriptors>                </configuration>            </plugin>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-remote-resources-plugin</artifactId>            </plugin>        </plugins>    </build>    <reporting>        <plugins>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-project-info-reports-plugin</artifactId>            </plugin>        </plugins>    </reporting>    <!-- repeated here so that pluto-site is not appended -->    <scm>        <connection>scm:svn:http://svn.apache.org/repos/asf/portals/pluto/trunk/</connection>        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/pluto/trunk/</developerConnection>        <url>http://svn.apache.org/viewcvs.cgi/portals/pluto/trunk/</url>    </scm></project>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?