Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Servers migrated to Jakarta #198

Merged
merged 23 commits into from
Apr 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
72ed7aa
Client and lib-common manual changes.
Jad-el-khoury Mar 20, 2024
4731633
Generated based on latest Lyodesigner with support for migration to
Jad-el-khoury Mar 20, 2024
01958a8
Update jakarta.servlet.jsp.jstl-api version
Jad-el-khoury Mar 21, 2024
470e0b3
Client and lib-common manual changes.
Jad-el-khoury Mar 20, 2024
bdc2f28
Generated based on latest Lyodesigner with support for migration to
Jad-el-khoury Mar 20, 2024
8c148c2
Update jakarta.servlet.jsp.jstl-api version
Jad-el-khoury Mar 21, 2024
bf82f73
Merge branch 'jakarta_generated' of https://github.com/oslc-op/refimp…
Jad-el-khoury Mar 27, 2024
13223b0
updates to run under jetty-maven-plugin as well as cargo-maven3-plugin
Jad-el-khoury Mar 27, 2024
e851a5c
fixing jstl problems.
Jad-el-khoury Mar 28, 2024
400f880
Update based on latest generation.
Jad-el-khoury Mar 28, 2024
403188e
update docker files.
Jad-el-khoury Mar 28, 2024
c959630
Update servers based on latest LyoDesigner generation
Jad-el-khoury Apr 5, 2024
e914de6
build: jakarta-ready docker images for CI
berezovskyi Apr 5, 2024
5a26928
readme update.
Jad-el-khoury Apr 5, 2024
e2903eb
Merge branch 'jakarta_generated' of https://github.com/oslc-op/refimp…
Jad-el-khoury Apr 5, 2024
559ac23
Merge branch 'master' into jakarta_generated
jadelkhoury Apr 5, 2024
3440d41
build: tomcat CI checks
berezovskyi Apr 5, 2024
b0202b0
ci: manual acceptance
berezovskyi Apr 5, 2024
a066034
ci: manual acceptance
berezovskyi Apr 5, 2024
6e1ddc9
ci: manual acceptance
berezovskyi Apr 5, 2024
306c6ed
fix: lib lyo dep
berezovskyi Apr 5, 2024
548b745
fix: kotlin client lyo dep
berezovskyi Apr 5, 2024
63132f3
build: fix tomcat docker ci
berezovskyi Apr 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 24 additions & 19 deletions src/server-rm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,23 @@
</plugins>
</build>
</profile>
<profile>
<!-- some servlet containers (Tomcat) does not ship with a JSTL impl
In such cases, run with this profile-->
<id>with-jstl-impl</id>
<dependencies>
<dependency>
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
berezovskyi marked this conversation as resolved.
Show resolved Hide resolved
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
</profile>
</profiles>
<!-- End of user code
-->
Expand Down Expand Up @@ -149,28 +166,16 @@
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
<version>3.0.0</version>
<!--If running with the jetty-maven-plugin, you
<!--When running with the jetty-maven-plugin, you
get warnings about jsp classes being scanned from multiple locations.
add the "provided" scope to avoid this warning.
-->
<!--<scope>provided</scope>-->
adding the "provided" scope avoids these warnings.-->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.1</version>
<!--If running with the jetty-maven-plugin, you
get warnings about jsp classes being scanned from multiple locations.
add the "provided" scope to avoid this warning.
-->
<!--<scope>provided</scope>-->
</dependency>
<dependency>
<groupId>org.glassfish.hk2.external</groupId>
<artifactId>jakarta.inject</artifactId>
<version>2.6.1</version>
</dependency>

<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
Expand Down Expand Up @@ -307,9 +312,9 @@
<!-- End of user code
-->
<plugin>
<groupId>org.eclipse.jetty.ee10</groupId>
<artifactId>jetty-ee10-maven-plugin</artifactId>
<version>12.0.7</version>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.20</version>
<configuration>
<webApp>
<contextPath>${application.contextpath}</contextPath>
Expand All @@ -331,7 +336,7 @@
<!--This plugins supports the following containers-->
<container>
<!--These containers are know to work-->
<!--<containerId>tomcat10x</containerId>-->
<containerId>tomcat10x</containerId>
<containerId>jetty12x</containerId>
<!-- <containerId>payara</containerId> -->
<!-- <containerId>wildfly26x</containerId> -->
Expand Down