.lombok-intellij-plugin.processor-api.0.5.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of processor-api Show documentation
Show all versions of processor-api Show documentation
Base api for all of Lombok processors for IntelliJ IDEA
The newest version!
<?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> <groupId>de.plushnikov.lombok-intellij-plugin</groupId> <artifactId>parent</artifactId> <version>0.5</version> </parent> <artifactId>processor-api</artifactId> <name>Lombok processor api modul for IntelliJ IDEA plugin</name> <description>Base api for all of Lombok processors for IntelliJ IDEA</description> <dependencies> <dependency> <groupId>org.jetbrains.idea</groupId> <artifactId>idea-openapi</artifactId> <type>pom</type> </dependency> <dependency> <groupId>org.jetbrains.idea</groupId> <artifactId>util</artifactId> </dependency> <dependency> <groupId>org.jetbrains.idea</groupId> <artifactId>annotations</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>${idea.version}</classifier> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>unpack</goal> </goals> <phase>generate-sources</phase> <configuration> <artifactItems> <artifactItem> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <type>jar</type> <classifier>sources</classifier> <overWrite>true</overWrite> <outputDirectory>${project.build.directory}/generated-sources/lombok</outputDirectory> </artifactItem> <artifactItem> <groupId>com.github.peichhorn</groupId> <artifactId>lombok-pg</artifactId> <version>${lombok-pg.version}</version> <type>jar</type> <classifier>sources</classifier> <overWrite>true</overWrite> <outputDirectory>${project.build.directory}/generated-sources/lombok-pg</outputDirectory> </artifactItem> </artifactItems> <includes>${lombok-annotations.includes},${lombok-pg-annotations.includes}</includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/lombok</source> <source>${project.build.directory}/generated-sources/lombok-pg</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>