illuminati-processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.phoboslabs.illuminati</groupId> <artifactId>illuminati-processor</artifactId> <version>0.9.9.39</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> <groupId>me.phoboslabs.illuminati</groupId> <artifactId>illuminati-processor</artifactId> <version>0.9.9.39</version> <packaging>jar</packaging> <name>illuminati-processor</name> <description>Project illuminati processor library.</description> <url>https://github.com/LeeKyoungIl/illuminati/tree/master/illuminati/illuminati-processor</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://opensource.org/licenses/Apache-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>leekyoungil</name> <email>leekyoungil@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/LeeKyoungIl/illuminati</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <repositories> <repository> <id>maven</id> <url>https://repo1.maven.org/maven2</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>me.phoboslabs.illuminati</groupId> <artifactId>illuminati-switch</artifactId> <version>[1.0.11, )</version> <scope>provided</scope> </dependency> <dependency> <groupId>me.phoboslabs.illuminati</groupId> <artifactId>illuminati-common</artifactId> <version>1.4.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>me.phoboslabs.illuminati</groupId> <artifactId>illuminati-annotation</artifactId> <version>[1.2.2, )</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.kafka/kafka-clients --> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <version>[0.11.0.0, )</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.5</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.rabbitmq/amqp-client --> <!-- illuminati using 'NIO' method on rabbitmq connection. because of using amqp-client greater then (4.x.x). --> <dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>[4.2.0, )</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>[3.0.1, )</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.google.auto.service/auto-service --> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>1.0-rc2</version> <scope>compile</scope> </dependency> <!-- Java Poet to generate java files --> <dependency> <groupId>com.squareup</groupId> <artifactId>javapoet</artifactId> <version>1.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>[2.5, )</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>[2.10.1, )</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.h2database/h2 --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>[1.4.196, )</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.spockframework/spock-core --> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>1.1-groovy-2.4</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-gpg-plugin</artifactId>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>sign-artifacts</id>--> <!-- <phase>verify</phase>--> <!-- <goals>--> <!-- <goal>sign</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-jar-plugin</artifactId>--> <!-- <version>3.2.0</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>sign-artifacts</id>--> <!-- <phase>verify</phase>--> <!-- <goals>--> <!-- <goal>sign</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <!-- <distributionManagement>--> <!-- <repository>--> <!-- <id>bintray-leekyoungil-illuminati</id>--> <!-- <name>leekyoungil-illuminati</name>--> <!-- <url>https://api.bintray.com/maven/leekyoungil/illuminati/illuminati-processor/;publish=1</url>--> <!-- </repository>--> <!-- </distributionManagement>--> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <!-- <repository>--> <!-- <id>ossrh</id>--> <!-- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>--> <!-- </repository>--> </distributionManagement> </project>