et.jsp.jstl.jakarta.servlet.jsp.jstl-api.3.0.1.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jakarta.servlet.jsp.jstl-api Show documentation
Show all versions of jakarta.servlet.jsp.jstl-api Show documentation
Jakarta Standard Tag Library API
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved. Copyright (c) 2021-2024 Contributors to the Eclipse Foundation This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0, which is available at http://www.eclipse.org/legal/epl-2.0. This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception, which is available at https://www.gnu.org/software/classpath/license.html. SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.ee4j</groupId> <artifactId>project</artifactId> <version>1.0.6</version> <relativePath /> </parent> <groupId>jakarta.servlet.jsp.jstl</groupId> <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> <version>3.0.1</version> <packaging>jar</packaging> <name>Jakarta Standard Tag Library API</name> <description>Jakarta Standard Tag Library API</description> <url>https://projects.eclipse.org/projects/ee4j.jstl</url> <licenses> <license> <name>EPL 2.0</name> <url>http://www.eclipse.org/legal/epl-2.0</url> <distribution>repo</distribution> </license> <license> <name>GPL2 w/ CPE</name> <url>https://www.gnu.org/software/classpath/license.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>yaminikb</id> <name>Yamini K B</name> <organization>Oracle Corporation</organization> <organizationUrl>http://www.oracle.com/</organizationUrl> </developer> </developers> <contributors> <contributor> <name>Kin Man Chung</name> </contributor> </contributors> <mailingLists> <mailingList> <name>JSTL dev mailing list</name> <post>[email protected]</post> <subscribe>https://dev.eclipse.org/mailman/listinfo/jstl-dev</subscribe> <unsubscribe>https://dev.eclipse.org/mailman/listinfo/jstl-dev</unsubscribe> <archive>https://dev.eclipse.org/mhonarc/lists/jstl-dev</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://github.com/eclipse-ee4j/jstl-api.git</connection> <developerConnection>scm:git:ssh://[email protected]/eclipse-ee4j/jstl-api.git</developerConnection> <url>https://github.com/eclipse-ee4j/jstl-api</url> <tag>HEAD</tag> </scm> <issueManagement> <system>github</system> <url>https://github.com/eclipse-ee4j/jstl-api/issues</url> </issueManagement> <dependencies> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>6.0.0</version> </dependency> <dependency> <groupId>jakarta.servlet.jsp</groupId> <artifactId>jakarta.servlet.jsp-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> <version>5.0.0</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> </includes> </resource> <resource> <directory>${project.basedir}/..</directory> <includes> <include>LICENSE.md</include> <include>NOTICE.md</include> </includes> <targetPath>META-INF</targetPath> </resource> <resource> <directory>${project.basedir}</directory> <includes> <include>LICENSE.md</include> <include>NOTICE.md</include> </includes> <targetPath>META-INF</targetPath> </resource> </resources> <plugins> <!-- Sets minimal Maven version --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.0</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <!-- Restricts the Java version to 11 --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>11</release> <compilerArgument>-Xlint:unchecked</compilerArgument> </configuration> </plugin> <!-- First sets properties for the maven-bundle-plugin and later checks if they are indeed used. --> <plugin> <groupId>org.glassfish.build</groupId> <artifactId>spec-version-maven-plugin</artifactId> <version>2.1</version> <configuration> <spec> <specVersion>3.0</specVersion> <specImplVersion>${project.version}</specImplVersion> <apiPackage>jakarta.servlet.jsp.jstl</apiPackage> </spec> </configuration> <executions> <execution> <goals> <goal>set-spec-properties</goal> <goal>check-module</goal> </goals> </execution> </executions> </plugin> <!-- Creates the OSGi MANIFEST.MF file --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.3</version> <configuration> <supportedProjectTypes> <supportedProjectType>jar</supportedProjectType> </supportedProjectTypes> <instructions> <Bundle-Version>${spec.bundle.version}</Bundle-Version> <Bundle-SymbolicName>${spec.bundle.symbolic-name}</Bundle-SymbolicName> <Extension-Name>${spec.extension.name}</Extension-Name> <Implementation-Version>${spec.implementation.version}</Implementation-Version> <Specification-Version>${spec.specification.version}</Specification-Version> <Bundle-Description> Jakarta Standard Tag Library ${spec.specification.version} Specification </Bundle-Description> <Specification-Vendor>${project.organization.name}</Specification-Vendor> <Implementation-Vendor>${project.organization.name}</Implementation-Vendor> <Implementation-Vendor-Id>org.glassfish</Implementation-Vendor-Id> <Import-Package> jakarta.el;version="[5.0,7)", jakarta.servlet.jsp;version="[3.1,5)", * </Import-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <!-- Adds the manifest file created by the org.apache.felix:maven-bundle-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> <excludes> <exclude>**/*.java</exclude> </excludes> </configuration> </plugin> <!-- Creates the source jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <configuration> <includePom>true</includePom> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Create Javadoc for API jar --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>timestamp-property</id> <goals> <goal>timestamp-property</goal> </goals> <phase>validate</phase> <configuration> <name>current.year</name> <pattern>yyyy</pattern> <locale>en_US</locale> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-api-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <source>11</source> <additionalJOption>-Xdoclint:none</additionalJOption> <description>Jakarta Standard Tag Library API documentation</description> <doctitle>Jakarta Standard Tag Library API documentation</doctitle> <windowtitle>Jakarta Standard Tag Library API documentation</windowtitle> <header><![CDATA[<br>Jakarta Standard Tag Library API v${project.version}]]></header> <bottom><![CDATA[ Comments to: <a href="mailto:[email protected]">[email protected]</a>.<br> Copyright © 2018, ${current.year} Eclipse Foundation. All rights reserved.<br> Use is subject to <a href="{@docRoot}/doc-files/EFSL.html" target="_top">license terms</a>.]]> </bottom> <docfilessubdirs>true</docfilessubdirs> <groups> <group> <title>Jakarta Standard Tag Library API Documentation</title> <packages>jakarta.servlet.jsp.jstl*</packages> </group> </groups> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>