Skip to content

Commit

Permalink
APS-220 disabled maven processing of meta model for demo test project
Browse files Browse the repository at this point in the history
  • Loading branch information
peters-axon committed Jun 27, 2024
1 parent 0b47c01 commit 0f7a4db
Showing 1 changed file with 55 additions and 50 deletions.
105 changes: 55 additions & 50 deletions persistence-utils-demo-test/pom.xml
Original file line number Diff line number Diff line change
@@ -1,52 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.utils.persistence</groupId>
<artifactId>persistence-utils-demo-test</artifactId>
<version>10.0.5-SNAPSHOT</version>
<packaging>iar</packaging>
<description>Test project of the persistence utils demo project. Note, that this project is currently also used to test some aspects of the persistence library.</description>
<dependencies>
<dependency>
<groupId>com.axonivy.utils.persistence</groupId>
<artifactId>persistence-utils-demo-tool</artifactId>
<version>${project.version}</version>
<type>iar</type>
</dependency>
<dependency>
<groupId>com.axonivy.ivy.test</groupId>
<artifactId>unit-tester</artifactId>
<version>10.0.16</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>5.6.5.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>3.7.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testSourceDirectory>src_test</testSourceDirectory>
<plugins>
<plugin>
<groupId>com.axonivy.ivy.ci</groupId>
<artifactId>project-build-plugin</artifactId>
<version>10.0.16</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.utils.persistence</groupId>
<artifactId>persistence-utils-demo-test</artifactId>
<version>10.0.5-SNAPSHOT</version>
<packaging>iar</packaging>
<description>Test project of the persistence utils demo project. Note, that this project is currently also used to test some aspects of the persistence library.</description>
<dependencies>
<dependency>
<groupId>com.axonivy.utils.persistence</groupId>
<artifactId>persistence-utils-demo-tool</artifactId>
<version>${project.version}</version>
<type>iar</type>
</dependency>
<dependency>
<groupId>com.axonivy.ivy.test</groupId>
<artifactId>unit-tester</artifactId>
<version>10.0.16</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>5.6.5.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>3.7.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testSourceDirectory>src_test</testSourceDirectory>
<plugins>
<plugin>
<groupId>com.axonivy.ivy.ci</groupId>
<artifactId>project-build-plugin</artifactId>
<version>10.0.16</version>
<extensions>true</extensions>
<configuration>
<compilerOptions>
<compilerOption>-proc:none</compilerOption>
</compilerOptions>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 0f7a4db

Please sign in to comment.