All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.lombok-intellij-plugin.lombok-plugin.0.2.source-code.pom.xml Maven / Gradle / Ivy

<?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.2</version>
  </parent>

  <artifactId>lombok-plugin</artifactId>
  <name>Lombok IntelliJ IDEA plugin modul</name>
  <description>Implementation of the Lombok Plugin for IntelliJ IDEA</description>

  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>processor-api</artifactId>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>processor-core</artifactId>
      <scope>runtime</scope>
    </dependency>

    <dependency>
      <groupId>com.intellij.idea</groupId>
      <artifactId>openapi</artifactId>
    </dependency>
    <dependency>
      <groupId>com.intellij.idea</groupId>
      <artifactId>util</artifactId>
    </dependency>
    <dependency>
      <groupId>com.intellij.idea</groupId>
      <artifactId>idea</artifactId>
    </dependency>
    <dependency>
      <groupId>com.intellij.idea</groupId>
      <artifactId>annotations</artifactId>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>com.intellij.idea</groupId>
      <artifactId>extensions</artifactId>
    </dependency>
    <dependency>
      <groupId>org.jdom</groupId>
      <artifactId>jdom</artifactId>
    </dependency>
    <dependency>
      <groupId>gnu.trove</groupId>
      <artifactId>trove</artifactId>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
    </dependency>
    <dependency>
      <groupId>org.picocontainer</groupId>
      <artifactId>picocontainer</artifactId>
    </dependency>
  </dependencies>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>processor-api</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>processor-core</artifactId>
        <version>${project.version}</version>
        <scope>runtime</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <properties>
    <skipTests>true</skipTests>
  </properties>

  <build>
    <defaultGoal>install</defaultGoal>

    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <excludes>
          <exclude>META-INF/plugin.xml</exclude>
        </excludes>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
        <includes>
          <include>META-INF/plugin.xml</include>
        </includes>
        <filtering>true</filtering>
      </resource>
    </resources>

    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <id>distribution-package</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
            <configuration>
              <attach>true</attach>
              <descriptors>
                <descriptor>src/main/assembly/idea-plugin-assembly.xml</descriptor>
              </descriptors>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <!--<plugin>-->
      <!--<groupId>org.projectlombok</groupId>-->
      <!--<artifactId>lombok-maven-plugin</artifactId>-->
      <!--<executions>-->
      <!--<execution>-->
      <!--<phase>generate-test-sources</phase>-->
      <!--<goals>-->
      <!--<goal>testDelombok</goal>-->
      <!--</goals>-->
      <!--<configuration>-->
      <!--<sourceDirectory>${project.basedir}/src/test/resources/data/lombok</sourceDirectory>-->
      <!--<outputDirectory>${project.basedir}/src/test/resources/data/delombok</outputDirectory>-->
      <!--</configuration>-->
      <!--</execution>-->
      <!--</executions>-->
      <!--<dependencies>-->
      <!--<dependency>-->
      <!--<groupId>sun.jdk</groupId>-->
      <!--<artifactId>tools</artifactId>-->
      <!--<version>1.6</version>-->
      <!--<scope>system</scope>-->
      <!--<systemPath>${java.home}/../lib/tools.jar</systemPath>-->
      <!--</dependency>-->
      <!--</dependencies>-->
      <!--</plugin>-->
    </plugins>
  </build>
</project>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy