el-api-2.2.pom 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>el</artifactId>
  43. <version>2.2</version>
  44. </parent>
  45. <modelVersion>4.0.0</modelVersion>
  46. <groupId>javax.el</groupId>
  47. <artifactId>el-api</artifactId>
  48. <packaging>jar</packaging>
  49. <version>2.2</version>
  50. <name>Expression Language API (2.1 Maintenance Release)</name>
  51. <developers>
  52. <developer>
  53. <id>kchung</id>
  54. <name>Kin Man Chung</name>
  55. <url>http://blogs.sun.com/kchung/</url>
  56. <organization>Sun Microsystems, Inc.</organization>
  57. <roles>
  58. <role>lead</role>
  59. </roles>
  60. </developer>
  61. </developers>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-javadoc-plugin</artifactId>
  67. <executions>
  68. <execution>
  69. <phase>javadoc</phase>
  70. <goals>
  71. <goal>javadoc</goal>
  72. </goals>
  73. <configuration>
  74. <groups>
  75. <group>
  76. <title>Expresion Language API Documentation</title>
  77. <packages>javax.el</packages>
  78. </group>
  79. </groups>
  80. <bottom>&lt;font size="-1"&gt;Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.&lt;/font&gt;</bottom>
  81. </configuration>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. <resources>
  87. <resource>
  88. <directory>src/main/java</directory>
  89. <includes>
  90. <include>**/*.properties</include>
  91. </includes>
  92. </resource>
  93. </resources>
  94. </build>
  95. </project>