pluto-portal
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.pluto</groupId> <artifactId>pluto-portal</artifactId> <version>1.1.7</version> </dependency>
<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>1.1.7</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>pluto-portal</artifactId> <packaging>war</packaging> <name>Pluto Portal</name> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> <version>${commons-logging.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.pluto</groupId> <artifactId>pluto-portal-driver</artifactId> <version>${pom.version}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.pluto</groupId> <artifactId>pluto-portal-driver-impl</artifactId> <version>${pom.version}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <artifactId>junit</artifactId> <groupId>junit</groupId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>pluto-portal</finalName> <plugins> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <filtering>true</filtering> <directory>${pom.basedir}/src/main/resources</directory> <includes> <include>pluto-portal-driver-config.xml</include> </includes> <!-- <targetPath> requires version 2.0.2 of maven-war-plugin --> <targetPath>WEB-INF</targetPath> </resource> </webResources> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.1</version> <configuration> <tasks> <get src="http://archive.apache.org/dist/tomcat/tomcat-5/archive/v5.5.9/bin/jakarta-tomcat-5.5.9.tar.gz" dest="target/tomcat.tar.gz" /> <gunzip src="target/tomcat.tar.gz" /> <untar src="target/tomcat.tar" /> </tasks> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.1</version> <configuration> <descriptor>src/assemble/bin.xml</descriptor> <finalName>pluto-portal-${pom.version}</finalName> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-remote-resources-plugin</artifactId> </plugin> </plugins> </build> </project>