Skip to content

Commit f6febb7

Browse files
authored
Fix Jex version and autorun Ebean (#148)
* fix jex version and autorun ebean * Update pom.xml
1 parent f828f78 commit f6febb7

File tree

1 file changed

+35
-6
lines changed

1 file changed

+35
-6
lines changed

pom.xml

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,32 +156,32 @@
156156
<dependency>
157157
<groupId>io.avaje</groupId>
158158
<artifactId>avaje-jex</artifactId>
159-
<version>${project.version}</version>
159+
<version>3.0-RC11</version>
160160
</dependency>
161161
<dependency>
162162
<groupId>io.avaje</groupId>
163163
<artifactId>avaje-jex-test</artifactId>
164-
<version>${project.version}</version>
164+
<version>3.0-RC11</version>
165165
</dependency>
166166
<dependency>
167167
<groupId>io.avaje</groupId>
168168
<artifactId>avaje-jex-freemarker</artifactId>
169-
<version>${project.version}</version>
169+
<version>3.0-RC11</version>
170170
</dependency>
171171
<dependency>
172172
<groupId>io.avaje</groupId>
173173
<artifactId>avaje-jex-mustache</artifactId>
174-
<version>${project.version}</version>
174+
<version>3.0-RC11</version>
175175
</dependency>
176176
<dependency>
177177
<groupId>io.avaje</groupId>
178178
<artifactId>avaje-jex-htmx</artifactId>
179-
<version>${project.version}</version>
179+
<version>3.0-RC11</version>
180180
</dependency>
181181
<dependency>
182182
<groupId>io.avaje</groupId>
183183
<artifactId>avaje-jex-static-content</artifactId>
184-
<version>${project.version}</version>
184+
<version>3.0-RC11</version>
185185
</dependency>
186186
</dependencies>
187187
</dependencyManagement>
@@ -259,6 +259,19 @@
259259
</execution>
260260
</executions>
261261
</plugin>
262+
<plugin>
263+
<groupId>io.ebean</groupId>
264+
<artifactId>ebean-maven-plugin</artifactId>
265+
<version>${ebean.version}</version>
266+
<executions>
267+
<execution>
268+
<goals>
269+
<goal>enhance</goal>
270+
<goal>testEnhance</goal>
271+
</goals>
272+
</execution>
273+
</executions>
274+
</plugin>
262275
</plugins>
263276
</pluginManagement>
264277
</build>
@@ -290,6 +303,22 @@
290303
</plugins>
291304
</build>
292305
</profile>
306+
<profile>
307+
<id>ebean</id>
308+
<activation>
309+
<file>
310+
<exists>target/classes/META-INF/ebean-generated-info.mf</exists>
311+
</file>
312+
</activation>
313+
<build>
314+
<plugins>
315+
<plugin>
316+
<groupId>io.ebean</groupId>
317+
<artifactId>ebean-maven-plugin</artifactId>
318+
</plugin>
319+
</plugins>
320+
</build>
321+
</profile>
293322
<profile>
294323
<id>create-modules</id>
295324
<build>

0 commit comments

Comments
 (0)