This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch v2 in repository https://gitbox.apache.org/repos/asf/causeway-app-petclinic.git
commit d9c8a95aacaf95fe5e22403b630e54a9ba2eab2e Author: Dan Haywood <[email protected]> AuthorDate: Mon May 20 21:21:39 2024 +0100 adds module-petowner module --- module-petowner/pom.xml | 77 +++++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 6 ++++ 2 files changed, 83 insertions(+) diff --git a/module-petowner/pom.xml b/module-petowner/pom.xml new file mode 100644 index 0000000..efea7c9 --- /dev/null +++ b/module-petowner/pom.xml @@ -0,0 +1,77 @@ +<?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 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <artifactId>simpleapp-jpa</artifactId> + <groupId>org.apache.causeway.starters</groupId> + <version>2.0.0</version> + </parent> + + <artifactId>simpleapp-jpa-module-petowner</artifactId> + <name>SimpleApp (JPA) - PetOwner Module</name> + + <build> + <resources> + <resource> + <directory>src/main/resources</directory> + </resource> + <resource> + <filtering>false</filtering> + <directory>src/main/java</directory> + <includes> + <include>**</include> + </includes> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + </resources> + </build> + + <dependencies> + + <!-- CAUSEWAY API --> + + <dependency> + <groupId>org.apache.causeway.core</groupId> + <artifactId>causeway-applib</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.causeway.testing</groupId> + <artifactId>causeway-testing-fakedata-applib</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.causeway.extensions</groupId> + <artifactId>causeway-extensions-fullcalendar-applib</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.causeway.extensions</groupId> + <artifactId>causeway-extensions-pdfjs-applib</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.causeway.persistence</groupId> + <artifactId>causeway-persistence-jpa-applib</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.causeway.testing</groupId> + <artifactId>causeway-testing-fixtures-applib</artifactId> + </dependency> + + <!-- IDE support (optional) --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-configuration-processor</artifactId> + <optional>true</optional> + </dependency> + + </dependencies> + +</project> diff --git a/pom.xml b/pom.xml index beb1a24..fccb4e1 100644 --- a/pom.xml +++ b/pom.xml @@ -40,6 +40,11 @@ <dependencies> <!-- this project's own modules --> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>simpleapp-jpa-module-petowner</artifactId> + <version>${project.version}</version> + </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>simpleapp-jpa-module-simple</artifactId> @@ -88,6 +93,7 @@ </dependencies> <modules> + <module>module-petowner</module> <module>module-simple</module> <module>module-simple-tests</module> <module>webapp</module>
