jsp-api-2.2.pom 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /*
  4. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  5. *
  6. * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
  7. *
  8. * The contents of this file are subject to the terms of either the GNU
  9. * General Public License Version 2 only ("GPL") or the Common Development
  10. * and Distribution License("CDDL") (collectively, the "License"). You
  11. * may not use this file except in compliance with the License. You can obtain
  12. * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
  13. * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
  14. * language governing permissions and limitations under the License.
  15. *
  16. * When distributing the software, include this License Header Notice in each
  17. * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
  18. * Sun designates this particular file as subject to the "Classpath" exception
  19. * as provided by Sun in the GPL Version 2 section of the License file that
  20. * accompanied this code. If applicable, add the following below the License
  21. * Header, with the fields enclosed by brackets [] replaced by your own
  22. * identifying information: "Portions Copyrighted [year]
  23. * [name of copyright owner]"
  24. *
  25. * Contributor(s):
  26. *
  27. * If you wish your version of this file to be governed by only the CDDL or
  28. * only the GPL Version 2, indicate your decision by adding "[Contributor]
  29. * elects to include this software in this distribution under the [CDDL or GPL
  30. * Version 2] license." If you don't indicate a single choice of license, a
  31. * recipient has the option to distribute your version of this file under
  32. * either the CDDL, the GPL Version 2 or to extend the choice of license to
  33. * its licensees as provided above. However, if you add GPL Version 2 code
  34. * and therefore, elected the GPL Version 2 license, then the option applies
  35. * only if the new code is made subject to such option by the copyright
  36. * holder.
  37. */
  38. -->
  39. <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">
  40. <parent>
  41. <groupId>org.glassfish.web</groupId>
  42. <artifactId>jsp</artifactId>
  43. <version>2.2</version>
  44. <relativePath>../parent-pom/pom.xml</relativePath>
  45. </parent>
  46. <modelVersion>4.0.0</modelVersion>
  47. <groupId>javax.servlet.jsp</groupId>
  48. <artifactId>jsp-api</artifactId>
  49. <version>2.2</version>
  50. <packaging>jar</packaging>
  51. <name>JavaServer Pages(TM) API</name>
  52. <developers>
  53. <developer>
  54. <id>kchung</id>
  55. <name>Kin Man Chung</name>
  56. <url>http://blogs.sun.com/kchung/</url>
  57. <organization>Sun Microsystems, Inc.</organization>
  58. <roles>
  59. <role>lead</role>
  60. </roles>
  61. </developer>
  62. </developers>
  63. <repositories>
  64. <repository>
  65. <id>maven2-repository.dev.java.net</id>
  66. <name>Java.net Repository for Maven</name>
  67. <url>http://download.java.net/maven/2</url>
  68. <snapshots>
  69. <updatePolicy>never</updatePolicy>
  70. </snapshots>
  71. </repository>
  72. </repositories>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-javadoc-plugin</artifactId>
  78. <executions>
  79. <execution>
  80. <phase>javadoc</phase>
  81. <goals>
  82. <goal>javadoc</goal>
  83. </goals>
  84. <configuration>
  85. <groups>
  86. <group>
  87. <title>JavaServer Pages API Documentation</title>
  88. <packages>javax.servlet.jsp</packages>
  89. </group>
  90. </groups>
  91. <bottom>Portions Copyright &amp;copy; 1999-2002 The Apache Software Foundation. All Rights Reserved. Portions Copyright &amp;copy; 2005-2006 Sun Microsystems Inc. All Rights Reserve</bottom>
  92. </configuration>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. </plugins>
  97. <resources>
  98. <resource>
  99. <directory>src/main/java</directory>
  100. <includes>
  101. <include>**/*.properties</include>
  102. </includes>
  103. </resource>
  104. </resources>
  105. </build>
  106. <dependencies>
  107. <dependency>
  108. <groupId>org.glassfish</groupId>
  109. <artifactId>javax.servlet</artifactId>
  110. <version>3.0-b72</version>
  111. <scope>provided</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>javax.el</groupId>
  115. <artifactId>el-api</artifactId>
  116. <version>2.2</version>
  117. <scope>provided</scope>
  118. </dependency>
  119. </dependencies>
  120. <scm>
  121. <connection>scm:svn:https://jsp.dev.java.net/svn/jsp/tags/jsp-api-2.2</connection>
  122. <developerConnection>scm:svn:https://jsp.dev.java.net/svn/jsp/tags/jsp-api-2.2</developerConnection>
  123. <url>https://jsp.dev.java.net/source/browse/jsp/tags/jsp-api-2.2</url>
  124. </scm>
  125. </project>