Skip to content

Commit

Permalink
Replace the text Java EE with Jakarta EE where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
ivargrimstad authored and manovotn committed Jun 15, 2024
1 parent 4480f99 commit 837aed3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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

0 comments on commit 837aed3

Please sign in to comment.