Skip to content

Commit

Permalink
PAYARA-2463 move java ee ctx util impl to web connector master (#2369)
Browse files Browse the repository at this point in the history
* moved JavaEE Context Implementation to gf-web-conncetor from payara-micro-services to be included in embedded

* import cleanup
  • Loading branch information
lprimak authored and smillidge committed Feb 3, 2018
1 parent f8e8ef6 commit 241eabe
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 23 deletions.
23 changes: 0 additions & 23 deletions appserver/payara-appserver-modules/payara-micro-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@
<artifactId>glassfish-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.main.common</groupId>
<artifactId>internal-api</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.glassfish.main.core</groupId>
<artifactId>glassfish</artifactId>
Expand Down Expand Up @@ -95,23 +89,6 @@
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-api</artifactId>
<version>${weld-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.main.deployment</groupId>
<artifactId>dol</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.main.common</groupId>
<artifactId>container-common</artifactId>
Expand Down
22 changes: 22 additions & 0 deletions appserver/web/gf-web-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,27 @@
<artifactId>deployment-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-api</artifactId>
<version>${weld-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.main.deployment</groupId>
<artifactId>dol</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.main.common</groupId>
<artifactId>container-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 241eabe

Please sign in to comment.