Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [glassfish-dev] GlassFish 7 stable relase

Hi,

On Thu, Apr 14, 2022 at 4:41 PM Tarun Telang <tarun.telang@xxxxxxxxx> wrote:
Great to see GlassFish 7.0.0.M4 Beta is available on github. I have started trying it out and will contribute my feedback through various challenges. 

Thanks for trying it out!

 
I am also looking for some inputs about how far we are from GlassFish 7.0.0 stable release. Is it going to be released in the next 1or 2 months? 

We consider this the first beta version, which is mainly based on it not depending on snapshots and very early other components anymore. 

There are still a number of failures across the board, but with the exception of Jakarta Concurrency, we feel these are all small failures mostly caused by trivial things (such as the infamous empty beans.xml, or new tests not correctly set up yet).


The plan to release the final is indeed between 1 and 2 months, where we're trying most to release half may, so exactly 1 month from now. As we're dependent on community contributions and can't directly task anyone, a hard date is always difficult.

Kind regards,
Arjan Tijms



 

Best Regards,
Tarun

On Tue, 5 Apr 2022 at 13:00, Tarun Telang <tarun.telang@xxxxxxxxx> wrote:
Hello, 

Is with Jakarta EE 10 or GlassFish 7.0, are there going to be any change in the deployment descriptor. 

Or the one below continues to be the latest.
web-app_5_0.xsdXML Schema for the Servlet deployment descriptor (web.xml)
Best Regards,
Tarun

On Wed, 30 Mar 2022 at 23:37, Tarun Telang <tarun.telang@xxxxxxxxx> wrote:
Updating the subject. 

Thanks Arjan, I went to the nexus repo and downloaded the servet-api-6.0.jar for testing with my code. 

Regards,
Tarun

On Wed, 30 Mar 2022 at 22:39, arjan tijms <arjan.tijms@xxxxxxxxx> wrote:
Hi,

Yes there is, since Servlet is not officially released yet, you would need to include the staging repository. The full and always up to date details about those can be found here: https://github.com/eclipse-ee4j/ee4j/blob/master/parent/pom.xml#L299

You can copy these to your own pom, or copy them to an .m2/settings.xml file. E.g. :

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

  <profiles>
    <profile>
      <id>default</id>
      <activation>
          <activeByDefault>true</activeByDefault>
      </activation>
      <repositories>
            <repository>
                    <id>sonatype-nexus-staging</id>
                    <name>Sonatype Nexus Staging</name>
                    <url>https://jakarta.oss.sonatype.org/content/repositories/staging/ </url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </repository>
            </repositories>

            <pluginRepositories>
                <pluginRepository>
                    <id>sonatype-nexus-staging</id>
                    <name>Sonatype Nexus Staging</name>
                    <url>https://jakarta.oss.sonatype.org/content/repositories/staging/ </url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
       </profile>
   </profiles>
</settings>







On Wed, Mar 30, 2022 at 6:58 PM Tarun Telang <tarun.telang@xxxxxxxxx> wrote:
Hello All, 
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
The above maven coordinate are giving error: 
> Cannot resolve jakarta.servlet:jakarta.servlet-api:6.0.0 

Is there a way to verify my code with Servlet 6.0 implementation of glassfish 7.0-M3?

Best Regards,
Tarun

On Fri, 18 Mar 2022 at 19:24, Scott Marlow <smarlow@xxxxxxxxxx> wrote:

Is there already a tracking GlassFish issue for the "org.glassfish.soteria.servlet.SamRegistrationInstaller not found" error asked in  [1]?

Scott

[1] https://github.com/eclipse-ee4j/jakartaee-tck/issues/900

_______________________________________________
glassfish-dev mailing list
glassfish-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/glassfish-dev
_______________________________________________
glassfish-dev mailing list
glassfish-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/glassfish-dev
_______________________________________________
glassfish-dev mailing list
glassfish-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/glassfish-dev
_______________________________________________
glassfish-dev mailing list
glassfish-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/glassfish-dev

Back to the top