Skip to content

Commit cec465c

Browse files
committed
Bump dependencies
1 parent b1a11bc commit cec465c

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

pom.xml

Lines changed: 14 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313

1414
<maven.compiler.release>21</maven.compiler.release>
15-
<ebean.version>17.0.0-RC3</ebean.version>
15+
<ebean.version>17.1.1</ebean.version>
1616
<jstachio.version>1.3.7</jstachio.version>
17-
<avaje-inject.version>11.5</avaje-inject.version>
18-
<avaje-http.version>3.3</avaje-http.version>
19-
<avaje-jex.version>3.3-RC1</avaje-jex.version>
20-
<avaje-jsonb.version>3.5</avaje-jsonb.version>
17+
<avaje-inject.version>12.0</avaje-inject.version>
18+
<avaje-http.version>3.5</avaje-http.version>
19+
<avaje-jex.version>3.3</avaje-jex.version>
20+
<avaje-jsonb.version>3.8</avaje-jsonb.version>
2121
</properties>
2222

2323
<dependencies>
2424

2525
<dependency>
2626
<groupId>io.avaje</groupId>
2727
<artifactId>avaje-simple-logger</artifactId>
28-
<version>0.4</version>
28+
<version>1.0</version>
2929
</dependency>
3030

3131
<dependency>
3232
<groupId>io.avaje</groupId>
3333
<artifactId>avaje-metrics</artifactId>
34-
<version>9.7</version>
34+
<version>9.8</version>
3535
</dependency>
3636

3737
<dependency>
@@ -79,7 +79,7 @@
7979
<dependency>
8080
<groupId>org.postgresql</groupId>
8181
<artifactId>postgresql</artifactId>
82-
<version>42.7.7</version>
82+
<version>42.7.8</version>
8383
<exclusions>
8484
<exclusion>
8585
<groupId>*</groupId>
@@ -88,11 +88,6 @@
8888
</exclusions>
8989
</dependency>
9090

91-
<dependency>
92-
<groupId>io.ebean</groupId>
93-
<artifactId>ebean-datasource</artifactId>
94-
<version>10.1</version>
95-
</dependency>
9691
<dependency>
9792
<groupId>io.ebean</groupId>
9893
<artifactId>ebean-postgres</artifactId>
@@ -116,14 +111,14 @@
116111
<dependency>
117112
<groupId>io.avaje</groupId>
118113
<artifactId>avaje-inject-test</artifactId>
119-
<version>11.5</version>
114+
<version>12.0</version>
120115
<scope>test</scope>
121116
</dependency>
122117

123118
<dependency>
124119
<groupId>io.avaje</groupId>
125120
<artifactId>avaje-jex-test</artifactId>
126-
<version>3.2</version>
121+
<version>3.3</version>
127122
<scope>test</scope>
128123
</dependency>
129124

@@ -137,7 +132,7 @@
137132
<dependency>
138133
<groupId>io.ebean</groupId>
139134
<artifactId>ebean-test-containers</artifactId>
140-
<version>7.14</version>
135+
<version>7.16</version>
141136
<scope>test</scope>
142137
</dependency>
143138

@@ -155,12 +150,6 @@
155150
<scope>test</scope>
156151
</dependency>
157152

158-
<dependency>
159-
<groupId>com.fasterxml.jackson.core</groupId>
160-
<artifactId>jackson-core</artifactId>
161-
<version>2.19.2</version>
162-
</dependency>
163-
164153
</dependencies>
165154

166155
<build>
@@ -169,7 +158,7 @@
169158
<plugin> <!-- perform metrics enhancement -->
170159
<groupId>io.avaje.metrics</groupId>
171160
<artifactId>metrics-maven-plugin</artifactId>
172-
<version>9.7</version>
161+
<version>9.8</version>
173162
<extensions>true</extensions>
174163
</plugin>
175164

@@ -183,7 +172,7 @@
183172
<plugin>
184173
<groupId>org.apache.maven.plugins</groupId>
185174
<artifactId>maven-compiler-plugin</artifactId>
186-
<version>3.14.0</version>
175+
<version>3.14.1</version>
187176
<configuration>
188177
<annotationProcessorPaths>
189178
<path>
@@ -245,7 +234,7 @@
245234
<plugin>
246235
<groupId>org.graalvm.buildtools</groupId>
247236
<artifactId>native-maven-plugin</artifactId>
248-
<version>0.11.0</version>
237+
<version>0.11.2</version>
249238
<executions>
250239
<execution>
251240
<id>build-native</id>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## for testing we desire plain format than json format
2+
logger.format=plain
3+
4+
## default log level to use when running tests
5+
logger.defaultLogLevel=INFO
6+
7+
## some test specific log levels
8+
log.level.io.ebean.test.containers=TRACE
9+
log.level.io.ebean.DDL=INFO
10+
log.level.io.ebean.SQL=DEBUG
11+
#log.level.io.ebean.TXN=DEBUG

0 commit comments

Comments
 (0)