|
Jetty example source code file (pom.xml)
The Jetty pom.xml source code<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>project <groupId>org.mortbay.jetty <version>6.1.9 <relativePath>../../pom.xml </parent> <modelVersion>4.0.0 <artifactId>jsp-api-2.0 <name>JSP 2.0 API dependencies <build> <defaultGoal>install <resources> <resource> <directory>src/main/resources <includes> <include>**/*.properties <include>**/*.dtd <include>**/*.xsd <include>**/*.xml </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-antrun-plugin <executions> <execution> <id>clean <phase>clean <goals> <goal>run </goals> <configuration> <tasks> <delete failonerror="false"> <fileset dir="../../lib/jsp-2.0/" includes="${project.artifactId}.${project.packaging}" /> </delete> </tasks> </configuration> </execution> <execution> <phase>install <goals> <goal>run </goals> <configuration> <tasks> <copy file="target/${project.artifactId}-${project.version}.${project.packaging}" tofile="../../lib/jsp-2.0/${project.artifactId}.${project.packaging}" /> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-jar-plugin <configuration> <archive> <manifestEntries> <mode>stable <url>${pom.url} <implementation-vendor>JCP <implementation-version>${pom.version} <specification-version>2.0 <package>javax.servlet.jsp </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.mortbay.jetty <artifactId>servlet-api-2.5 <version>${project.version} </dependency> </dependencies> </project> Other Jetty examples (source code examples)Here is a short list of links related to this Jetty pom.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.