attributes-processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.carrot2.attributes</groupId>
<artifactId>attributes-processor</artifactId>
<version>1.3.4</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/maven-v4_0_0.xsd">
<parent>
<artifactId>attributes-parent</artifactId>
<groupId>org.carrot2.attributes</groupId>
<version>1.3.4</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>attributes-processor</artifactId>
<name>Attributes metadata annotation processor</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<proc>none</proc>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>false</minimizeJar>
<artifactSet>
<excludes>
<exclude>org.slf4j:*</exclude>
<exclude>org.simpleframework:*</exclude>
<exclude>org.carrot2.shaded:carrot2-guava</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>org.apache.velocity:velocity</artifact>
<excludes>
<exclude>org/apache/velocity/runtime/defaults/*.properties</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.thoughtworks</pattern>
<shadedPattern>org.carrot2.util.preprocessor.shaded.qdox</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache</pattern>
<shadedPattern>org.carrot2.util.preprocessor.shaded.apache</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<releases />
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>apache-releases</id>
<url>https://repository.apache.org/content/repositories/releases</url>
</pluginRepository>
</pluginRepositories>
</project>