forked from jakartaee/websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
62 lines (53 loc) · 2.28 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<!--
This plugin is responsible for packaging artifacts
as OSGi bundles. Please refer to
http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html
for more information about how to use this plugin.
-->
<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.5</version>
</parent>
<groupId>org.eclipse.ee4j.websocket</groupId>
<artifactId>websocket-parent</artifactId>
<packaging>pom</packaging>
<version>2.0.0-SNAPSHOT</version>
<name>Jakarta WebSocket</name>
<description>Jakarta WebSocket</description>
<url>https://projects.eclipse.org/projects/ee4j.websocket</url>
<inceptionYear>2012</inceptionYear>
<scm>
<connection>scm:git:https://github.com/eclipse-ee4j/websocket-api</connection>
<developerConnection>scm:git:ssh://[email protected]/eclipse-ee4j/websocket-api</developerConnection>
<url>https://github.com/eclipse-ee4j/websocket-api</url>
<tag>1.1</tag>
</scm>
<properties>
<api_package>jakarta.websocket</api_package>
<spec_version>2.0</spec_version>
<!--<spec_build>02</spec_build>-->
<new_spec_version>2.0</new_spec_version>
<spec_impl_version>2.0.0</spec_impl_version>
<packages.export>jakarta.websocket.*</packages.export>
</properties>
<modules>
<module>api</module>
<module>spec</module>
</modules>
<licenses>
<license>
<name>Eclipse Public License 2.0</name>
<url>https://projects.eclipse.org/license/epl-2.0</url>
<distribution>repo</distribution>
</license>
<license>
<name>GNU General Public License, version 2 with the GNU Classpath Exception</name>
<url>https://projects.eclipse.org/license/secondary-gpl-2.0-cp</url>
<distribution>repo</distribution>
</license>
</licenses>
</project>