Skip to content

Commit 429b3c1

Browse files
author
sujith-mn
committed
2 parents 6981b12 + 23e3971 commit 429b3c1

File tree

1 file changed

+40
-24
lines changed

1 file changed

+40
-24
lines changed

pom.xml

Lines changed: 40 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,11 @@
103103
<scope>provided</scope>
104104
<version>4.3.1</version>
105105
</dependency>
106-
107-
<!-- JSON logging -->
108-
<dependency>
109-
<groupId>io.quarkus</groupId>
110-
<artifactId>quarkus-logging-json</artifactId>
111-
</dependency>
106+
<!-- Json logging / Enable this if you do not use tkit-json-log -->
107+
<!-- <dependency>-->
108+
<!-- <groupId>io.quarkus</groupId>-->
109+
<!-- <artifactId>quarkus-logging-json</artifactId>-->
110+
<!-- </dependency>-->
112111

113112
<!-- Lombok, which does what java should do out of the box -->
114113
<dependency>
@@ -139,36 +138,51 @@
139138
<scope>provided</scope>
140139
</dependency>
141140

142-
<!--Testing -->
141+
<!-- 1000kit extensions-->
143142
<dependency>
144-
<groupId>io.quarkus</groupId>
145-
<artifactId>quarkus-junit5</artifactId>
146-
<scope>test</scope>
143+
<groupId>org.tkit.quarkus</groupId>
144+
<artifactId>tkit-quarkus-rest</artifactId>
145+
<version>2.4.0</version>
147146
</dependency>
147+
<!-- Business method logger... -->
148148
<dependency>
149-
<groupId>io.rest-assured</groupId>
150-
<artifactId>rest-assured</artifactId>
151-
<scope>test</scope>
149+
<groupId>org.tkit.quarkus</groupId>
150+
<artifactId>tkit-quarkus-log-cdi</artifactId>
151+
<version>1.4.5</version>
152152
</dependency>
153+
<!-- REST communication logger.. -->
153154
<dependency>
154-
<groupId>org.testcontainers</groupId>
155-
<artifactId>testcontainers</artifactId>
156-
<version>1.15.2</version>
157-
<scope>test</scope>
155+
<groupId>org.tkit.quarkus</groupId>
156+
<artifactId>tkit-quarkus-log-rs</artifactId>
157+
<version>1.4.5</version>
158158
</dependency>
159+
<!-- Extended structured JSON logger -->
160+
<dependency>
161+
<groupId>org.tkit.quarkus</groupId>
162+
<artifactId>tkit-quarkus-log-json</artifactId>
163+
<version>1.4.5</version>
164+
</dependency>
165+
166+
<!-- Component level integration tests -->
159167
<dependency>
160-
<groupId>org.testcontainers</groupId>
161-
<artifactId>junit-jupiter</artifactId>
162-
<version>1.15.2</version>
168+
<groupId>org.tkit.quarkus</groupId>
169+
<artifactId>tkit-quarkus-test</artifactId>
170+
<version>1.12.0</version>
163171
<scope>test</scope>
164172
</dependency>
173+
174+
<!--Testing -->
165175
<dependency>
166-
<groupId>org.testcontainers</groupId>
167-
<artifactId>postgresql</artifactId>
168-
<version>1.15.2</version>
176+
<groupId>io.quarkus</groupId>
177+
<artifactId>quarkus-junit5</artifactId>
169178
<scope>test</scope>
170179
</dependency>
171180

181+
<dependency>
182+
<groupId>io.rest-assured</groupId>
183+
<artifactId>rest-assured</artifactId>
184+
<scope>test</scope>
185+
</dependency>
172186
</dependencies>
173187
<build>
174188
<plugins>
@@ -209,7 +223,9 @@
209223
</systemPropertyVariables>
210224
</configuration>
211225
</plugin>
212-
<plugin>
226+
227+
228+
<plugin>
213229
<groupId>com.mysema.maven</groupId>
214230
<artifactId>apt-maven-plugin</artifactId>
215231
<version>1.1.3</version>

0 commit comments

Comments
 (0)