Skip to content

Commit

Permalink
[WFLY-19152] Test the index
Browse files Browse the repository at this point in the history
  • Loading branch information
kabir committed Apr 28, 2024
1 parent 6c25dd5 commit 41bee6d
Show file tree
Hide file tree
Showing 17 changed files with 519 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testsuite/integration/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,11 @@
<groupId>org.jboss.spec.jakarta.xml.soap</groupId>
<artifactId>jboss-saaj-api_3.0_spec</artifactId>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-core-management-subsystem</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly.discovery</groupId>
<artifactId>wildfly-discovery-client</artifactId>
Expand Down Expand Up @@ -1540,6 +1545,7 @@
<include>org/jboss/as/test/integration/weld/**/*Test.java</include>
<include>org/wildfly/test/integration/microprofile/**/*TestCase.java</include>
<include>org/wildfly/test/integration/microprofile/**/*Test.java</include>
<include>org/wildfly/test/integration/unstable_api_annotation/*TestCase.java</include>
</includes>
<excludes>
<!-- ee-security subsystem missing, javax.enterprise.security.api not injected -->
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.dummy;

public class Dummy {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar;

public class JarClassA {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar;

public class JarClassB {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassA {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassB {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassC {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassD {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassE {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassF {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassG {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.jar2;

public class Jar2ClassH {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.war;

import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;

@WebServlet(name = "WarClassA", urlPatterns = { "/WarClassA" })
public class Servlet extends HttpServlet {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.war;

public class WarClassA {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.war;

public class WarClassB {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/

package org.wildfly.test.integration.unstable_api_annotation.war;

public class WarClassC {
}

0 comments on commit 41bee6d

Please sign in to comment.