Yes, it is in the jakarta.oss.sonatype.org staging repository:
https://jakarta.oss.sonatype.org/content/groups/staging/jakarta/enterprise/cdi-tck-dist/3.0.0/

We are not supposed to release it until the ballot is approved. That should kick off next week. One of the changes I have in the weld core pom.xml is the following to be able to use the jakarta staging repo:

        <!--
This profile enables consuming artifacts from the Jakarta staging
repository group.
-->
<profile>
<id>staging</id>
<activation>
<activeByDefault>false</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>

On Thu, Aug 6, 2020 at 9:55 AM Matej Novotny <manovotn@redhat.com> wrote:
@Scott - I cannot see the latest CDI TCK release in Maven central (again...). Is this intentional?

I am pretty sure they should be landing there since it was me who was fixing up the jenkins jobs to do that.

Matej