pom.xml.svn-base
来自「portal越来越流行了」· SVN-BASE 代码 · 共 222 行
SVN-BASE
222 行
<?xml version="1.0" encoding="UTF-8"?><!-- Copyright 2005-2006 The Apache Software Foundation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.--><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> <groupId>org.apache.pluto</groupId> <artifactId>pluto</artifactId> <version>2.0.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>pluto-testsuite</artifactId> <packaging>war</packaging> <name>Pluto Testsuite Portlet</name> <dependencies> <dependency> <groupId>javax.portlet</groupId> <artifactId>portlet-api</artifactId> <version>${portlet-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${servlet-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>${jstl.version}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>${commons-digester.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> <version>${commons-logging.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${commons-logging.version}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>logkit</groupId> <artifactId>logkit</artifactId> </exclusion> <exclusion> <groupId>avalon-framework</groupId> <artifactId>avalon-framework</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>${taglibs.standard.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <!-- Build configuration --> <build> <finalName>pluto-testsuite</finalName> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <!-- configure maven-war-plugin to use updated web.xml --> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <webXml>${project.build.directory}/pluto-resources/web.xml</webXml> </configuration> </plugin> <!-- bind 'pluto:assemble' goal to 'process-resources' lifecycle --> <plugin> <groupId>org.apache.pluto</groupId> <artifactId>maven-pluto-plugin</artifactId> <version>${pom.version}</version> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>assemble</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <!-- best lock down version of the plugin too --> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy-testsuite</id> <activation> <activeByDefault>false</activeByDefault> <property><name>deploy.dir</name></property> </activation> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>integration-test</phase> <configuration> <tasks> <!-- Use this to build and deploy the testsuite war. PORTLET_DEPLOY_DIR is an environmental variable pointing to the hot-deploy directory of your portal. You can also use -Ddeploy.dir=<path to deployment dir> on the command line when invoking maven: mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test --> <property environment="env"/> <property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/> <copy file="target/${pom.build.finalName}.war" tofile="${deploy.dir}/testsuite.war"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy-testsuite-by-env</id> <activation> <activeByDefault>false</activeByDefault> <property><name>env.PORTLET_DEPLOY_DIR</name></property> </activation> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>integration-test</phase> <configuration> <tasks> <!-- Use this to build and deploy the testsuite war. PORTLET_DEPLOY_DIR is an environmental variable pointing to the hot-deploy directory of your portal. You can also use -Ddeploy.dir=<path to deployment dir> on the command line when invoking maven: mvn -Ddeploy.dir=/pluto-1.1.4/webapps integration-test --> <property environment="env"/> <property name="deploy.dir" value="${env.PORTLET_DEPLOY_DIR}"/> <copy file="target/${pom.build.finalName}.war" tofile="${deploy.dir}/testsuite.war"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?