| POM文件内容: |
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>immutables</artifactId>
<groupId>org.immutables</groupId>
<version>2.1.9</version>
</parent>
<artifactId>builder</artifactId>
<name>${project.groupId}.${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>org.immutables.dependency</groupId>
<artifactId>utility</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>testing</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- it's better have just 'value' dep, but due to some maven 3.3.1 bug,
it exposes both relocated and not relocated classess, having processor to run twice -->
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>${project.version}</version>
<classifier>annotations</classifier>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value-processor</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|