You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by "David Blevins (Jira)" <ji...@apache.org> on 2021/04/12 02:16:00 UTC

[jira] [Updated] (TOMEE-3140) Jakarta EE 9.1 TCK Failures

     [ https://issues.apache.org/jira/browse/TOMEE-3140?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Blevins updated TOMEE-3140:
---------------------------------
    Description: 
Download the main git repositories and build them
{code:java}
git clone git@github.com:apache/tomee-patch-plugin.git
git clone git@github.com:apache/tomee.git
git clone git@github.com:apache/tomee-jakarta.git
git clone git@github.com:apache/tomee-tck.git -b jakartaee9-tck

for n in tomee-patch-plugin tomee tomee-jakarta; do
    (cd $n && mvn clean install -DskipTests -DfailIfNoTests=false)
done
{code}
Ensure your ~/.m2/settings.xml file contains at least the following:
{code:xml}
<settings>
  <profiles>
    <profile>
      <id>jakartaee-tck</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <jakartaee91.cts.home>/path/to/tcks/.</jakartaee91.cts.home>
        <jakartaee91.ri.home>/path/to/tcks/.</jakartaee91.ri.home>
      </properties>
    </profile>
  </profiles>
</settings>
{code}
Set "{{/path/to/tcks}}" to any location where you would like the TCK and RI installed. Make sure the directory exists. Also ensure to add a "{{/.}}" to the path when configuring it in the settings.xml.

 

Once this is done, there is a script that will download and setup the TCK and RI.

cd tomee-tck

./update91tck.sh

 

> Jakarta EE 9.1 TCK Failures
> ---------------------------
>
>                 Key: TOMEE-3140
>                 URL: https://issues.apache.org/jira/browse/TOMEE-3140
>             Project: TomEE
>          Issue Type: Task
>            Reporter: David Blevins
>            Priority: Major
>
> Download the main git repositories and build them
> {code:java}
> git clone git@github.com:apache/tomee-patch-plugin.git
> git clone git@github.com:apache/tomee.git
> git clone git@github.com:apache/tomee-jakarta.git
> git clone git@github.com:apache/tomee-tck.git -b jakartaee9-tck
> for n in tomee-patch-plugin tomee tomee-jakarta; do
>     (cd $n && mvn clean install -DskipTests -DfailIfNoTests=false)
> done
> {code}
> Ensure your ~/.m2/settings.xml file contains at least the following:
> {code:xml}
> <settings>
>   <profiles>
>     <profile>
>       <id>jakartaee-tck</id>
>       <activation>
>         <activeByDefault>true</activeByDefault>
>       </activation>
>       <properties>
>         <jakartaee91.cts.home>/path/to/tcks/.</jakartaee91.cts.home>
>         <jakartaee91.ri.home>/path/to/tcks/.</jakartaee91.ri.home>
>       </properties>
>     </profile>
>   </profiles>
> </settings>
> {code}
> Set "{{/path/to/tcks}}" to any location where you would like the TCK and RI installed. Make sure the directory exists. Also ensure to add a "{{/.}}" to the path when configuring it in the settings.xml.
>  
> Once this is done, there is a script that will download and setup the TCK and RI.
> cd tomee-tck
> ./update91tck.sh
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)