Skip to content

Commit

Permalink
New parent pom.xml
Browse files Browse the repository at this point in the history
Signed-off-by: David Blevins <david.blevins@gmail.com>
  • Loading branch information
dblevins committed Jul 12, 2019
1 parent d776b43 commit ac84596
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?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.2</version>
</parent>

<groupId>org.eclipse.ee4j.websocket</groupId>
<artifactId>websocket-parent</artifactId>
<packaging>pom</packaging>
<version>1.1.1-SNAPSHOT</version>
<name>WebSocket API</name>
<description>JSR 356: Java API for WebSocket</description>
<url>https://projects.eclipse.org/projects/ee4j.websocket</url>

<scm>
<connection>scm:git:https://github.com/eclipse-ee4j/websocket-api</connection>
<developerConnection>scm:git:ssh://git@github.com/eclipse-ee4j/websocket-api</developerConnection>
<url>https://github.com/eclipse-ee4j/websocket-api</url>
<tag>1.1</tag>
</scm>

<properties>
<api_package>javax.websocket</api_package>
<spec_version>1.1</spec_version>
<!--<spec_build>02</spec_build>-->
<new_spec_version>1.1</new_spec_version>
<spec_impl_version>1.1.1</spec_impl_version>
<packages.export>javax.websocket.*</packages.export>
</properties>

<modules>
<module>api</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>

0 comments on commit ac84596

Please sign in to comment.