| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <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> |
| |
| <parent> |
| <groupId>org.apache.causeway</groupId> |
| <artifactId>causeway-parent</artifactId> |
| <version>4.0.0-SNAPSHOT</version> |
| <relativePath>../../parent/pom.xml</relativePath> |
| </parent> |
| |
| <groupId>org.apache.causeway.viewer</groupId> |
| <artifactId>causeway-viewer-webcomponents</artifactId> |
| <name>Apache Causeway Viewer - Web Components</name> |
| <packaging>pom</packaging> |
| |
| <properties> |
| <!-- The reactor-wide spring-boot:run goal must ignore non-application modules. --> |
| <spring-boot.run.skip>true</spring-boot.run.skip> |
| <sample-html.run.skip>true</sample-html.run.skip> |
| <sample-htmx-petclinic.run.skip>true</sample-htmx-petclinic.run.skip> |
| <sample-vue-petclinic.run.skip>true</sample-vue-petclinic.run.skip> |
| </properties> |
| |
| <modules> |
| <module>foundation</module> |
| <module>vue</module> |
| <module>htmx</module> |
| <module>security-secman</module> |
| <module>htmx-security-secman</module> |
| <module>vue-security-secman</module> |
| <module>sample-petclinic-domain</module> |
| <module>sample-html</module> |
| <module>sample-htmx-petclinic</module> |
| <module>sample-vue-petclinic</module> |
| </modules> |
| |
| <profiles> |
| <profile> |
| <id>run-sample-html</id> |
| <properties> |
| <sample-html.run.skip>false</sample-html.run.skip> |
| </properties> |
| <build> |
| <defaultGoal>spring-boot:run</defaultGoal> |
| </build> |
| </profile> |
| <profile> |
| <id>run-sample-htmx-petclinic</id> |
| <properties> |
| <sample-htmx-petclinic.run.skip>false</sample-htmx-petclinic.run.skip> |
| </properties> |
| <build> |
| <defaultGoal>spring-boot:run</defaultGoal> |
| </build> |
| </profile> |
| <profile> |
| <id>run-sample-vue-petclinic</id> |
| <properties> |
| <sample-vue-petclinic.run.skip>false</sample-vue-petclinic.run.skip> |
| </properties> |
| <build> |
| <defaultGoal>spring-boot:run</defaultGoal> |
| </build> |
| </profile> |
| <profile> |
| <id>run-sample-vue-petclinic-secured</id> |
| <properties> |
| <sample-vue-petclinic.run.skip>false</sample-vue-petclinic.run.skip> |
| <spring-boot.run.main-class>org.apache.causeway.viewer.webcomponents.sample.vue.petclinicsecured.PetClinicVueSecuredApplication</spring-boot.run.main-class> |
| </properties> |
| <build> |
| <defaultGoal>spring-boot:run</defaultGoal> |
| </build> |
| </profile> |
| <profile> |
| <id>run-sample-htmx-petclinic-secured</id> |
| <properties> |
| <sample-htmx-petclinic.run.skip>false</sample-htmx-petclinic.run.skip> |
| <spring-boot.run.main-class>org.apache.causeway.viewer.webcomponents.sample.htmx.petclinicsecured.PetClinicHtmxSecuredApplication</spring-boot.run.main-class> |
| </properties> |
| <build> |
| <defaultGoal>spring-boot:run</defaultGoal> |
| </build> |
| </profile> |
| </profiles> |
| |
| </project> |