jakarta.websocket-all-2.1.1.pom 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2018, 2022 Oracle and/or its affiliates and others.
  4. All rights reserved.
  5. This program and the accompanying materials are made available under the
  6. terms of the Eclipse Public License v. 2.0, which is available at
  7. http://www.eclipse.org/legal/epl-2.0.
  8. This Source Code may also be made available under the following Secondary
  9. Licenses when the conditions for such availability set forth in the
  10. Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
  11. version 2 with the GNU Classpath Exception, which is available at
  12. https://www.gnu.org/software/classpath/license.html.
  13. SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
  14. -->
  15. <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">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>org.eclipse.ee4j</groupId>
  19. <artifactId>project</artifactId>
  20. <version>1.0.8</version>
  21. <relativePath/>
  22. </parent>
  23. <groupId>jakarta.websocket</groupId>
  24. <artifactId>jakarta.websocket-all</artifactId>
  25. <version>2.1.1</version>
  26. <packaging>pom</packaging>
  27. <name>Jakarta WebSocket API Parent</name>
  28. <description>Jakarta WebSocket API Parent</description>
  29. <url>https://projects.eclipse.org/projects/ee4j.websocket</url>
  30. <inceptionYear>2012</inceptionYear>
  31. <developers>
  32. <developer>
  33. <id>jakarta-ee4j-websocket</id>
  34. <name>Jakarta WebSocket Developers</name>
  35. <organization>Eclipse Foundation</organization>
  36. <email>websocket-dev@eclipse.org</email>
  37. </developer>
  38. </developers>
  39. <contributors>
  40. <contributor>
  41. <name>Jakarta WebSocket Contributors</name>
  42. <email>websocket-dev@eclipse.org</email>
  43. <url>https://github.com/eclipse-ee4j/websocket-api/graphs/contributors</url>
  44. </contributor>
  45. </contributors>
  46. <mailingLists>
  47. <mailingList>
  48. <name>WebSocket dev mailing list</name>
  49. <post>websocket-dev@eclipse.org</post>
  50. <subscribe>https://dev.eclipse.org/mailman/listinfo/websocket-dev</subscribe>
  51. <unsubscribe>https://dev.eclipse.org/mailman/listinfo/websocket-dev</unsubscribe>
  52. <archive>https://dev.eclipse.org/mhonarc/lists/websocket-dev</archive>
  53. </mailingList>
  54. </mailingLists>
  55. <scm>
  56. <connection>scm:git:https://github.com/eclipse-ee4j/websocket-api.git</connection>
  57. <developerConnection>scm:git:ssh://git@github.com/eclipse-ee4j/websocket-api.git</developerConnection>
  58. <url>https://github.com/eclipse-ee4j/websocket-api</url>
  59. <tag>HEAD</tag>
  60. </scm>
  61. <issueManagement>
  62. <system>github</system>
  63. <url>https://github.com/eclipse-ee4j/websocket-api/issues</url>
  64. </issueManagement>
  65. <properties>
  66. <!-- Make sure the spec version is in sync with the maven version -->
  67. <spec.version>2.1</spec.version>
  68. <bundle.version>${project.version}</bundle.version>
  69. <vendorName>Eclipse Foundation</vendorName>
  70. </properties>
  71. <build>
  72. <pluginManagement>
  73. <plugins>
  74. <!-- Sets minimal Maven version to 3.5.4 -->
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-enforcer-plugin</artifactId>
  78. <version>3.0.0-M3</version>
  79. <executions>
  80. <execution>
  81. <id>enforce-maven</id>
  82. <goals>
  83. <goal>enforce</goal>
  84. </goals>
  85. <configuration>
  86. <rules>
  87. <requireMavenVersion>
  88. <version>3.5.4</version>
  89. <message>You need Maven 3.5.4 or higher</message>
  90. </requireMavenVersion>
  91. </rules>
  92. </configuration>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. <!-- Restricts the Java version to 1.8 -->
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-compiler-plugin</artifactId>
  100. <version>3.8.1</version>
  101. <configuration>
  102. <source>1.8</source>
  103. <target>1.8</target>
  104. <compilerArgument>-Xlint:unchecked</compilerArgument>
  105. </configuration>
  106. </plugin>
  107. <!-- Checks copyright / license headers -->
  108. <plugin>
  109. <groupId>org.glassfish.copyright</groupId>
  110. <artifactId>glassfish-copyright-maven-plugin</artifactId>
  111. <version>2.3</version>
  112. <configuration>
  113. <excludeFile>etc/config/copyright-exclude</excludeFile>
  114. <!--svn|mercurial|git - defaults to svn -->
  115. <scm>git</scm>
  116. <!-- turn on/off debugging -->
  117. <debug>false</debug>
  118. <!-- skip files not under SCM -->
  119. <scmOnly>true</scmOnly>
  120. <!-- turn off warnings -->
  121. <warn>true</warn>
  122. <!-- for use with repair -->
  123. <update>false</update>
  124. <!-- check that year is correct -->
  125. <ignoreYear>false</ignoreYear>
  126. <templateFile>etc/config/copyright-eclipse.txt</templateFile>
  127. <alternateTemplateFile>etc/config/copyright-oracle.txt</alternateTemplateFile>
  128. </configuration>
  129. </plugin>
  130. <!-- Creates the OSGi MANIFEST.MF file -->
  131. <plugin>
  132. <groupId>org.apache.felix</groupId>
  133. <artifactId>maven-bundle-plugin</artifactId>
  134. <version>5.1.1</version>
  135. <configuration>
  136. <instructions>
  137. <Bundle-Description>Jakarta WebSocket ${spec.version}</Bundle-Description>
  138. <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
  139. <Bundle-Version>${bundle.version}</Bundle-Version>
  140. <Extension-Name>${extensionName}</Extension-Name>
  141. <Specification-Version>${spec.version}</Specification-Version>
  142. <Specification-Vendor>${vendorName}</Specification-Vendor>
  143. <Implementation-Version>${project.version}</Implementation-Version>
  144. <Implementation-Vendor>${vendorName}</Implementation-Vendor>
  145. <Export-Package>jakarta.websocket.*</Export-Package>
  146. </instructions>
  147. </configuration>
  148. <executions>
  149. <execution>
  150. <id>bundle-manifest</id>
  151. <phase>process-classes</phase>
  152. <goals>
  153. <goal>manifest</goal>
  154. </goals>
  155. </execution>
  156. </executions>
  157. </plugin>
  158. <!-- Adds the manifest file created by the org.apache.felix:maven-bundle-plugin -->
  159. <plugin>
  160. <artifactId>maven-jar-plugin</artifactId>
  161. <version>3.1.0</version>
  162. <configuration>
  163. <archive>
  164. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  165. </archive>
  166. </configuration>
  167. </plugin>
  168. <!-- Creates the source jar -->
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-source-plugin</artifactId>
  172. <version>3.0.1</version>
  173. <configuration>
  174. <includePom>true</includePom>
  175. </configuration>
  176. <executions>
  177. <execution>
  178. <id>attach-sources</id>
  179. <goals>
  180. <goal>jar-no-fork</goal>
  181. </goals>
  182. </execution>
  183. </executions>
  184. </plugin>
  185. <!-- Create Javadoc for API jar -->
  186. <plugin>
  187. <groupId>org.apache.maven.plugins</groupId>
  188. <artifactId>maven-javadoc-plugin</artifactId>
  189. <version>3.1.1</version>
  190. <executions>
  191. <execution>
  192. <id>attach-javadocs</id>
  193. <goals>
  194. <goal>jar</goal>
  195. </goals>
  196. <configuration>
  197. <source>1.8</source>
  198. <additionalJOption>-Xdoclint:none</additionalJOption>
  199. <description>Jakarta WebSocket API documentation</description>
  200. <doctitle>Jakarta WebSocket API documentation</doctitle>
  201. <windowtitle>Jakarta WebSocket API documentation</windowtitle>
  202. <header><![CDATA[Jakarta WebSocket API v${project.version}]]></header>
  203. <bottom><![CDATA[
  204. Comments to: <a href="mailto:websocket-dev@eclipse.org">websocket-dev@eclipse.org</a>.<br>
  205. Copyright &#169; 2018, 2021 Eclipse Foundation. All rights reserved.<br>
  206. Use is subject to <a href="{@docRoot}/doc-files/EFSL.html" target="_top">license terms</a>.]]>
  207. </bottom>
  208. <docfilessubdirs>true</docfilessubdirs>
  209. <groups>
  210. <group>
  211. <title>Jakarta WebSocket API Documentation</title>
  212. <packages>
  213. jakarta.websocket*
  214. </packages>
  215. </group>
  216. </groups>
  217. <tags>
  218. <tag>
  219. <name>implSpec</name>
  220. <placement>a</placement>
  221. <head>Implementation Requirements:</head>
  222. </tag>
  223. </tags>
  224. <links>
  225. <link>https://docs.oracle.com/javase/8/docs/api/</link>
  226. </links>
  227. <includeDependencySources>true</includeDependencySources>
  228. </configuration>
  229. </execution>
  230. </executions>
  231. </plugin>
  232. </plugins>
  233. </pluginManagement>
  234. </build>
  235. <modules>
  236. <module>client</module>
  237. <module>server</module>
  238. </modules>
  239. </project>