doma-spring-boot-samples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.seasar.doma.boot</groupId>
<artifactId>doma-spring-boot-samples</artifactId>
<version>3.0.0</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>doma-spring-boot</artifactId>
<groupId>org.seasar.doma.boot</groupId>
<version>3.0.0</version>
</parent>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
<description>Doma Samples</description>
<artifactId>doma-spring-boot-samples</artifactId>
<name>doma-spring-boot-samples</name>
<modules>
<module>doma-spring-boot-sample-simple</module>
<module>doma-spring-boot-sample-entity-listener</module>
<module>doma-spring-boot-sample-event-handler</module>
<module>doma-spring-boot-sample-two-datasource</module>
<module>doma-spring-boot-sample-unified-criteria</module>
<module>doma-spring-boot-sample-docker-compose</module>
<module>doma-spring-boot-sample-testcontainers</module>
</modules>
<properties>
<maven.compiler.parameters>true</maven.compiler.parameters>
</properties>
<profiles>
<profile>
<id>backward-compatible</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-Adoma.version.validation=false</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>