intellij-facade-factory
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.plushnikov.lombok-intellij-plugin</groupId> <artifactId>intellij-facade-factory</artifactId> <version>0.5</version> </dependency>
<?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>intellij-facade-factory</artifactId> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>intellij-facade-api</artifactId> <classifier>${idea.version}</classifier> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>intellij-facade-9</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>intellij-facade-10</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>intellij-facade-11</artifactId> </dependency> <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> <dependency> <groupId>org.jetbrains.idea</groupId> <artifactId>idea</artifactId> <type>pom</type> </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> </plugins> </build> </project>