Skip to content

Commit 5e67421

Browse files
committed
[WFLY-19622] Removes unused Arquillian dependencies and doc resources
1 parent 13fb699 commit 5e67421

File tree

24 files changed

+9
-868
lines changed

24 files changed

+9
-868
lines changed

CONTRIBUTING.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ See the https://github.com/wildfly/quickstart/blob/11.x/pom.xml#L155[WildFly par
265265

266266
** CDI should be used as the programming model
267267
** Avoid using a `web.xml` file if possible. Use a `faces-config.xml` to activate JSF if needed.
268-
** Any tests should use Arquillian.
268+
** Any tests should use JUnit.
269269

270-
* If the quickstart persists to a database, you must use a unique datasource JNDI name and connection URL for the application and for any Arquillian tests that it provides. Do not use the JNDI name `java:jboss/datasources/ExampleDS`. Failure to use unique names can result in a `DuplicateServiceException` when more than one quickstart is deployed to the same server.
270+
* If the quickstart persists to a database, you must use a unique datasource JNDI name and connection URL for the application and for any tests that it provides. Do not use the JNDI name `java:jboss/datasources/ExampleDS`. Failure to use unique names can result in a `DuplicateServiceException` when more than one quickstart is deployed to the same server.
271271

272272
* Be sure to test the quickstart in {JBDSProductName}, which strictly enforces Jakarta EE coding rules!
273273

guide/KitchensinkQuickstart.asciidoc

Lines changed: 2 additions & 394 deletions
Large diffs are not rendered by default.

guide/gfx/eclipse_arquillian_0.png

-32.2 KB
Binary file not shown.

guide/gfx/eclipse_arquillian_1.png

-120 KB
Binary file not shown.
-93.6 KB
Binary file not shown.
-120 KB
Binary file not shown.

guide/gfx/eclipse_arquillian_2.png

-43.2 KB
Binary file not shown.

guide/gfx/eclipse_arquillian_3.png

-45.6 KB
Binary file not shown.

guide/gfx/eclipse_arquillian_4.png

-20.8 KB
Binary file not shown.

kitchensink/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -185,21 +185,6 @@
185185
<scope>provided</scope>
186186
</dependency>
187187

188-
<!-- Optional, but highly recommended -->
189-
<!-- Arquillian allows you to test enterprise code such as EJBs and Transactional(JTA)
190-
JPA from JUnit/TestNG -->
191-
<dependency>
192-
<groupId>org.jboss.arquillian.junit</groupId>
193-
<artifactId>arquillian-junit-container</artifactId>
194-
<scope>test</scope>
195-
</dependency>
196-
197-
<dependency>
198-
<groupId>org.jboss.arquillian.protocol</groupId>
199-
<artifactId>arquillian-protocol-servlet-jakarta</artifactId>
200-
<scope>test</scope>
201-
</dependency>
202-
203188
<!-- JBoss Logging is provided by the server -->
204189
<dependency>
205190
<groupId>org.jboss.logging</groupId>

0 commit comments

Comments
 (0)