Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

Commit

Permalink
Add JAX-RS + JSON-P fraction
Browse files Browse the repository at this point in the history
  • Loading branch information
kenfinnigan committed Nov 3, 2015
1 parent 6bfb0b6 commit da7d6d4
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 0 deletions.
87 changes: 87 additions & 0 deletions jaxrs-jsonp/pom.xml
@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.wildfly.swarm</groupId>
<artifactId>wildfly-swarm-parent</artifactId>
<version>1.0.0.Alpha6-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<groupId>org.wildfly.swarm</groupId>
<artifactId>wildfly-swarm-jaxrs-jsonp</artifactId>

<name>WildFly Swarm: JAX-RS + JSON-P</name>
<description>WildFly Swarm: JAX-RS + JSON-P</description>

<packaging>jar</packaging>

<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.wildfly.swarm</groupId>
<artifactId>wildfly-swarm-fraction-plugin</artifactId>
</plugin>
</plugins>
</build>

<dependencies>
<!-- Dependent APIs -->
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>wildfly-swarm-jaxrs</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Provided APIs -->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
</dependency>

<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-core-feature-pack</artifactId>
<type>zip</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-servlet-feature-pack</artifactId>
<type>zip</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-feature-pack</artifactId>
<type>zip</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

</project>
@@ -0,0 +1,5 @@
<module xmlns="urn:jboss:module:1.3" name="org.wildfly.swarm.jaxrs.jsonp">
<dependencies>
<module name="org.jboss.resteasy.resteasy-json-p-provider"/>
</dependencies>
</module>
1 change: 1 addition & 0 deletions jaxrs-jsonp/src/main/resources/provided-dependencies.txt
@@ -0,0 +1 @@
org.glassfish:javax.json
Empty file.
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -438,6 +438,7 @@
<module>io</module>
<module>jaxrs</module>
<module>jaxrs-jaxb</module>
<module>jaxrs-jsonp</module>
<module>jaxrs-multipart</module>
<module>jaxrs-weld</module>
<module>jca</module>
Expand Down

0 comments on commit da7d6d4

Please sign in to comment.