| Group ID: |
org.darkphoenixs |
| Artifact ID: |
messagequeue-framework |
| Version: |
1.4.1 |
| Last modified: |
22.09.2016 13:03 |
| Packaging: |
jar |
| Name: |
Message Queue Client Framework |
| Description: |
A message queue client framework (Apache Kafka & Apache ActiveMQ) |
| URL: |
http://darkphoenixs.org/message-queue-client-framework/ |
| License: |
The Apache Software License, Version 2.0 |
| Source: |
http://darkphoenixs.org/message-queue-client-framework/ |
| Developers: |
Victor Zeng |
| Vendor: |
Dark Phoenixs |
|
|
| Size: |
85.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/org/darkphoenixs/messagequeue-framework/1.4.1/messagequeue-framework-1.4.1.jar |
| POM: |
Show
hide
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>org.darkphoenixs</groupId>
<artifactId>messagequeue-framework</artifactId>
<version>1.4.1</version>
<packaging>jar</packaging>
<name>Message Queue Client Framework</name>
<url>http://darkphoenixs.org/message-queue-client-framework/</url>
<description>A message queue client framework (Apache Kafka & Apache ActiveMQ)</description>
<inceptionYear>2015</inceptionYear>
<organization>
<name>Dark Phoenixs</name>
<url>http://darkphoenixs.org/</url>
</organization>
<developers>
<developer>
<id>victorzeng</id>
<name>Victor Zeng</name>
<email>Victor.Zxy@outlook.com</email>
<roles>
<role>designer</role>
<role>developer</role>
<role>tester</role>
</roles>
<url>https://victorzeng.github.io/</url>
<organization>Dark Phoenixs</organization>
</developer>
</developers>
<issueManagement>
<system>Github</system>
<url>https://github.com/DarkPhoenixs/message-queue-client-framework/issues</url>
</issueManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/DarkPhoenixs/message-queue-client-framework.git</connection>
<developerConnection>scm:git:https://github.com/DarkPhoenixs/message-queue-client-framework.git
</developerConnection>
<url>http://darkphoenixs.org/message-queue-client-framework/</url>
</scm>
<properties>
<kafka.version>0.9.0.1</kafka.version>
<activemq.version>5.10.0</activemq.version>
<spring.version>4.0.0.RELEASE</spring.version>
<jdk.version>1.7</jdk.version>
<test.skip>true</test.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<outputDirectory>target/classes</outputDirectory>
<testOutputDirectory>target/test-classes</testOutputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<configuration>
<skip>${test.skip}</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>travis</id>
<activation>
<property>
<name>env.TRAVIS</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</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-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<encoding>UTF-8</encoding>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</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-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
<configuration>
<attach>true</attach>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<destDir>${project.build.directory}/apidocs/v${project.version}</destDir>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<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>
<dependencies>
<!-- Spring Config -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
<version>${spring.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<!-- Spring Config -->
<!-- ActiveMQ Config -->
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>${activemq.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-pool</artifactId>
<version>${activemq.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency><!-- commons pool -->
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
<version>1.6</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<!-- ActiveMQ Config -->
<!-- Kafka Config -->
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
<version>${kafka.version}</version>
<optional>true</optional>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
<version>${kafka.version}</version>
<classifier>test</classifier>
<scope>test</scope>
</dependency>
<dependency><!-- zookeeper client -->
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
<version>2.8.0</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency><!-- json parser/generator -->
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.10</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<!-- Kafka Config -->
<!-- Other Config -->
<dependency>
<groupId>org.darkphoenixs</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<!-- Other Config -->
</dependencies>
</project>
|
| Maven: |
<dependency>
<groupId>org.darkphoenixs</groupId>
<artifactId>messagequeue-framework</artifactId>
<version>1.4.1</version>
</dependency>
|
| Gradle: |
org.darkphoenixs:messagequeue-framework:1.4.1 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
|
| Dependency Graph: |
Show
Less
More
|