You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2023/01/12 10:12:41 UTC

[isis] branch master updated: ISIS-3320: it seems datanucleus-maven-plugin requires an explicit enhance goal entry

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 84bb8172a0 ISIS-3320: it seems datanucleus-maven-plugin requires an explicit enhance goal entry
84bb8172a0 is described below

commit 84bb8172a034b3889df46ef9d4135695b8155777
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Jan 12 11:12:34 2023 +0100

    ISIS-3320: it seems datanucleus-maven-plugin requires an explicit
    enhance goal entry
---
 starters/pom.xml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/starters/pom.xml b/starters/pom.xml
index 0bb822db4e..29b8b2b030 100644
--- a/starters/pom.xml
+++ b/starters/pom.xml
@@ -153,10 +153,22 @@
 			</activation>
 			<build>
 				<plugins>
-					<plugin>
+                    <plugin>
 						<groupId>org.datanucleus</groupId>
 						<artifactId>datanucleus-maven-plugin</artifactId>
 						<version>${datanucleus-maven-plugin.version}</version>
+						<configuration>
+							<log4jConfiguration>${basedir}/logging-dn-enhance.properties</log4jConfiguration>
+							<verbose>true</verbose>
+						</configuration>
+						<executions>
+							<execution>
+								<phase>process-classes</phase>
+								<goals>
+									<goal>enhance</goal>
+								</goals>
+							</execution>
+						</executions>
 					</plugin>
 				</plugins>
 			</build>