You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
181 lines
7.0 KiB
181 lines
7.0 KiB
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|
<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> |
|
|
|
<artifactId>spring-data-relational</artifactId> |
|
<version>4.0.0</version> |
|
|
|
<name>Spring Data Relational</name> |
|
<description>Spring Data Relational support</description> |
|
|
|
<parent> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-relational-parent</artifactId> |
|
<version>4.0.0</version> |
|
</parent> |
|
|
|
<properties> |
|
<java-module-name>spring.data.relational</java-module-name> |
|
<project.root>${basedir}/..</project.root> |
|
<jsqlparser>5.0</jsqlparser> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>spring-data-commons</artifactId> |
|
<version>${springdata.commons}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.code.findbugs</groupId> |
|
<artifactId>jsr305</artifactId> |
|
<version>${jsr305.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.assertj</groupId> |
|
<artifactId>assertj-core</artifactId> |
|
<version>${assertj}</version> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>net.bytebuddy</groupId> |
|
<artifactId>byte-buddy</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.tngtech.archunit</groupId> |
|
<artifactId>archunit</artifactId> |
|
<version>${archunit.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.jetbrains.kotlin</groupId> |
|
<artifactId>kotlin-stdlib</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.mockk</groupId> |
|
<artifactId>mockk-jvm</artifactId> |
|
<version>${mockk}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>testcontainers</artifactId> |
|
<version>${testcontainers}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.github.jsqlparser</groupId> |
|
<artifactId>jsqlparser</artifactId> |
|
<version>${jsqlparser}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<profiles> |
|
<profile> |
|
<id>nullaway</id> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<annotationProcessorPaths> |
|
<path> |
|
<groupId>com.querydsl</groupId> |
|
<artifactId>querydsl-apt</artifactId> |
|
<version>${querydsl}</version> |
|
</path> |
|
<path> |
|
<groupId>org.openjdk.jmh</groupId> |
|
<artifactId>jmh-generator-annprocess</artifactId> |
|
<version>${jmh}</version> |
|
</path> |
|
<path> |
|
<groupId>com.google.errorprone</groupId> |
|
<artifactId>error_prone_core</artifactId> |
|
<version>${errorprone}</version> |
|
</path> |
|
<path> |
|
<groupId>com.uber.nullaway</groupId> |
|
<artifactId>nullaway</artifactId> |
|
<version>${nullaway}</version> |
|
</path> |
|
</annotationProcessorPaths> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>default-compile</id> |
|
<phase>none</phase> |
|
</execution> |
|
<execution> |
|
<id>default-testCompile</id> |
|
<phase>none</phase> |
|
</execution> |
|
<execution> |
|
<id>java-compile</id> |
|
<phase>compile</phase> |
|
<goals> |
|
<goal>compile</goal> |
|
</goals> |
|
<configuration> |
|
<compilerArgs> |
|
<arg>-XDcompilePolicy=simple</arg> |
|
<arg>--should-stop=ifError=FLOW</arg> |
|
<arg>-Xplugin:ErrorProne -XepDisableAllChecks -Xep:NullAway:ERROR |
|
-XepOpt:NullAway:OnlyNullMarked=true |
|
-XepOpt:NullAway:TreatGeneratedAsUnannotated=true |
|
-XepOpt:NullAway:CustomContractAnnotations=org.springframework.lang.Contract |
|
</arg> |
|
</compilerArgs> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>java-test-compile</id> |
|
<phase>test-compile</phase> |
|
<goals> |
|
<goal>testCompile</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
</profiles> |
|
</project>
|
|
|