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

Replace the text Java EE with Jakarta EE where appropriate #591

Merged
merged 2 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
2 changes: 1 addition & 1 deletion api/src/main/java/org/jboss/cdi/tck/api/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public interface Configuration {
public void setLibraryDirectory(String libraryDir);

/**
* Few TCK tests need to work with Java EE services related to persistence (JPA, JTA) - test datasource must be provided.
* Few TCK tests need to work with Jakarta EE services related to persistence (JPA, JTA) - test datasource must be provided.
* These tests belong to testng group
* <code>persistence</code>.
*
Expand Down
2 changes: 1 addition & 1 deletion dist-build/jboss-runner.pom
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@
</build>
</profile>

<!-- Run the TCK in the managed container (full Java EE platform) -->
<!-- Run the TCK in the managed container (full Jakarta EE platform) -->
<profile>
<id>incontainer</id>
<activation>
Expand Down
2 changes: 1 addition & 1 deletion dist-build/lang-model-tck-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
</dependencies>
</profile>

<!-- Run the TCK in the managed container (full Java EE platform) -->
<!-- Run the TCK in the managed container (full Jakarta EE platform) -->
<profile>
<id>incontainer</id>
<activation>
Expand Down
2 changes: 1 addition & 1 deletion impl/src/main/java/org/jboss/cdi/tck/TestGroups.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* <ul>
* <li>{@link #CDI_FULL} - used to exclude the superset of CDI tests that do not apply to CDI-lite implementations</li>
* <li>{@link #INTEGRATION} - used to exclude integration tests when running standalone container</li>
* <li>{@link #JAVAEE_FULL} - subset of integration tests used to exclude tests that require full Java EE platform; tests that
* <li>{@link #JAVAEE_FULL} - subset of integration tests used to exclude tests that require full Jakarta EE platform; tests that
* belong to this group are also considered to be integration tests</li>
* </ul>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public static Object lookup(String jndiName) {
try {
object = new InitialContext().lookup(jndiName);
} catch (NamingException e) {
throw new IllegalStateException("Unable to lookup Java EE component with JNDI name: " + jndiName, e);
throw new IllegalStateException("Unable to lookup Jakarta EE component with JNDI name: " + jndiName, e);
}

logger.log("Java EE component with JNDI name {0} found: {1}", jndiName, object.toString());
logger.log("Jakarta EE component with JNDI name {0} found: {1}", jndiName, object.toString());

return object;
}
Expand Down
Loading