wasp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.glassfish.wasp</groupId> <artifactId>wasp</artifactId> <version>4.0.0</version> </dependency>
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>project</artifactId> <groupId>org.eclipse.ee4j</groupId> <version>1.0.9</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.glassfish.wasp</groupId> <artifactId>wasp</artifactId> <name>WaSP</name> <version>4.0.0</version> <description>Eclipse compatible implementation of Jakarta Server Pages</description> <url>https://projects.eclipse.org/projects/ee4j.wasp</url> <issueManagement> <system>github</system> <url>https://github.com/eclipse-ee4j/wasp/issues</url> </issueManagement> <mailingLists> <mailingList> <name>Jakarta Server Pages dev mailing list</name> <subscribe>https://dev.eclipse.org/mailman/listinfo/wasp-dev</subscribe> <unsubscribe>https://dev.eclipse.org/mailman/listinfo/wasp-dev</unsubscribe> <post>wasp-dev@eclipse.org</post> <archive>https://dev.eclipse.org/mhonarc/lists/wasp-dev</archive> </mailingList> </mailingLists> <developers> <developer> <id>jakarta-ee4j-wasp</id> <name>WaSP Developers</name> <email>wasp-dev@eclipse.org</email> <organization>Eclipse Foundation</organization> </developer> </developers> <contributors> <contributor> <name>WaSP Contributors</name> <email>wasp-dev@eclipse.org</email> <url>https://github.com/eclipse-ee4j/wasp/graphs/contributors</url> </contributor> </contributors> <scm> <connection>scm:git:https://github.com/eclipse-ee4j/wasp.git</connection> <developerConnection>scm:git:ssh://git@github.com/eclipse-ee4j/wasp.git</developerConnection> <url>https://github.com/eclipse-ee4j/wasp</url> </scm> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> </resource> <resource> <targetPath>META-INF</targetPath> <directory>${project.basedir}/..</directory> <includes> <include>LICENSE.md</include> <include>NOTICE.md</include> </includes> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.8.6</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>17</release> <compilerArgument>-Xlint:all</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.9</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <_noimportjava>true</_noimportjava> <_runee>JavaSE-17</_runee> <Automatic-Module-Name>org.glassfish.wasp</Automatic-Module-Name> <Extension-Name>org.glassfish.wasp.wasp</Extension-Name> <Bundle-SymbolicName>org.glassfish.wasp.wasp</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Bundle-Name>WaSP Jakarta Server Pages Implementation ${project.version}</Bundle-Name> <Bundle-Description>Eclipse Jakarta Server Pages Implementation (jakarta.pages/3.1) ${project.version}</Bundle-Description> <Specification-Title>Jakarta Server Pages</Specification-Title> <Specification-Version>3.1</Specification-Version> <Specification-Vendor>Eclipse Foundation</Specification-Vendor> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor>Eclipse Foundation</Implementation-Vendor> <_include>-osgi.bundle</_include> <Import-Package>!org.apache.bcel, !org.apache.regexp, !org.apache.xml, !org.apache.xml.dtm, !org.apache.xml.utils, !org.apache.xpath, !org.apache.xpath.jaxp, !org.apache.xpath.objects, !org.apache.xpath.res, !java_cup.runtime, !trax, org.xml.sax.ext, *</Import-Package> </instructions> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <artifactSet> <includes> <include>xalan:xalan</include> </includes> </artifactSet> <filters> <filter> <artifact>xalan:xalan</artifact> <excludes> <exclude>META-INF/**</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.apache.xpath</pattern> <shadedPattern>org.eclipse.tags.shaded.org.apache.xpath</shadedPattern> </relocation> <relocation> <pattern>org.apache.xml</pattern> <shadedPattern>org.eclipse.tags.shaded.org.apache.xml</shadedPattern> </relocation> <relocation> <pattern>org.apache.xalan</pattern> <shadedPattern>org.eclipse.tags.shaded.org.apache.xalan</shadedPattern> </relocation> <relocation> <pattern>org.apache.regexp</pattern> <shadedPattern>org.eclipse.tags.shaded.org.apache.regexp</shadedPattern> </relocation> <relocation> <pattern>org.apache.bcel</pattern> <shadedPattern>org.eclipse.tags.shaded.org.apache.bcel</shadedPattern> </relocation> <relocation> <pattern>java_cup.runtime</pattern> <shadedPattern>org.eclipse.tags.shaded.java_cup.runtime</shadedPattern> </relocation> <relocation> <pattern>trax</pattern> <shadedPattern>org.eclipse.tags.shaded.trax</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> <failOnError>false</failOnError> <detectOfflineLinks>false</detectOfflineLinks> <excludePackageNames>org.glassfish.wasp.util,org.apache.*,java_cup.*,trax</excludePackageNames> <quiet>true</quiet> <groups> <group> <title>WaSP ${project.version}</title> <packages>org.glassfish.wasp</packages> <packages>org.glassfish.jsp.api</packages> </group> </groups> <bottom>Comments to: <a href="mailto:wasp-dev@eclipse.org">wasp-dev@eclipse.org</a>.<br> Copyright &#169; 2018, 2024 Eclipse Foundation. All rights reserved.<br> Use is subject to <a href="http://www.eclipse.org/legal/epl-2.0" target="_top">license terms</a>.</bottom> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>jakarta.servlet.jsp</groupId> <artifactId>jakarta.servlet.jsp-api</artifactId> <version>4.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet.jsp.jstl</groupId> <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>6.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> <version>6.0.1</version> <scope>provided</scope> </dependency> </dependencies> </project>