이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 3. Installing the Quarkus Narayana JTA extension
You need to add the quarkus-narayana-jta extension as a dependency to your Quarkus project. If you are using Hibernate ORM, the quarkus-narayana-jta extension is already present in your project.
Prerequisites
- Have a Quarkus Maven project.
Procedure
Navigate to the root directory of your project.
cd <directory_name>
cd <directory_name>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Use one of the following methods to add the
quarkus-narayana-jtaextension to your Quarkus project:Add the
quarkus-narayana-jtaextension to yourpom.xmlfile:<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-narayana-jta</artifactId> </dependency><dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-narayana-jta</artifactId> </dependency>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Add the
quarkus-narayana-jtaextension using the command line:./mvnw quarkus:add-extension -Dextensions="narayana-jta"
./mvnw quarkus:add-extension -Dextensions="narayana-jta"Copy to Clipboard Copied! Toggle word wrap Toggle overflow