Files
java-tutorials/lombok/pom.xml
T

88 lines
3.5 KiB
XML
Raw Normal View History

2016-06-12 21:28:49 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2017-05-12 20:32:54 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-07-12 12:34:54 +05:30
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
2016-06-12 21:28:49 +02:00
http://maven.apache.org/xsd/maven-4.0.0.xsd">
2018-04-26 18:07:47 +05:30
<modelVersion>4.0.0</modelVersion>
<name>lombok</name>
<artifactId>lombok</artifactId>
<version>0.1-SNAPSHOT</version>
2018-04-26 12:20:35 +05:30
2018-04-26 18:07:47 +05:30
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
2018-04-26 12:20:35 +05:30
2018-04-26 18:07:47 +05:30
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<!-- Check for the most recent available version: https://projectlombok.org/changelog.html -->
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>${hibernate-jpa-2.1-api.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
2018-04-26 18:07:47 +05:30
</dependencies>
2018-04-26 12:20:35 +05:30
2018-04-26 18:07:47 +05:30
<build>
<finalName>lombok</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2018-04-26 12:20:35 +05:30
2018-04-26 18:07:47 +05:30
<plugins>
2018-04-26 12:20:35 +05:30
2018-04-26 18:07:47 +05:30
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>${delombok-maven-plugin.version}</version>
<executions>
<execution>
<id>delombok</id>
<phase>generate-sources</phase>
<goals>
<goal>delombok</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
2018-10-17 20:02:53 +02:00
<outputDirectory>${project.build.directory}/delombok</outputDirectory>
2018-04-26 18:07:47 +05:30
<addOutputDirectory>false</addOutputDirectory>
<formatPreferences>
<javaLangAsFQN>skip</javaLangAsFQN>
</formatPreferences>
<verbose>false</verbose>
</configuration>
</execution>
2018-07-12 12:34:54 +05:30
<!-- This is for delomboking also your tests sources. <execution> <id>test-delombok</id> <phase>generate-test-sources</phase> <goals> <goal>testDelombok</goal> </goals>
2018-04-26 18:07:47 +05:30
<configuration> <verbose>false</verbose> </configuration> </execution> -->
</executions>
</plugin>
</plugins>
</build>
2018-04-26 12:20:35 +05:30
2018-04-26 18:07:47 +05:30
<properties>
<!-- lombok: https://projectlombok.org/changelog.html -->
<lombok.version>1.16.18</lombok.version>
<!-- various -->
<hibernate-jpa-2.1-api.version>1.0.0.Final</hibernate-jpa-2.1-api.version>
<!-- delombok maven plugin -->
<delombok-maven-plugin.version>1.16.10.0</delombok-maven-plugin.version>
<assertj-core.version>3.8.0</assertj-core.version>
2018-04-26 18:07:47 +05:30
</properties>
2016-06-12 21:28:49 +02:00
</project>