bigio-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.bigio</groupId> <artifactId>bigio-core</artifactId> <version>1.2</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.bigio</groupId> <artifactId>bigio</artifactId> <version>1.2</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>bigio-core</artifactId> <packaging>jar</packaging> <name>BigIO Core</name> <url>http://bigio.io</url> <licenses> <license> <name>Simplified BSD License</name> <url>http://opensource.org/licenses/BSD-2-Clause</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Andrew Trimble</name> <email>andrew.trimble@archarithms.com</email> <organization>Archarithms Inc.</organization> <organizationUrl>http://www.archarithms.com</organizationUrl> </developer> </developers> <properties> <argLine> -javaagent:${project.build.directory}/agents/bigio-agent-${project.version}.jar -Dio.bigio.binDir=target </argLine> </properties> <dependencies> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>bigio-agent</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.msgpack</groupId> <artifactId>msgpack-core</artifactId> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec</artifactId> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> </dependency> <dependency> <groupId>org.projectreactor</groupId> <artifactId>reactor-core</artifactId> <exclusions> <exclusion> <artifactId>org.slf4j</artifactId> <groupId>slf4j-api</groupId> </exclusion> <exclusion> <artifactId>io.netty</artifactId> <groupId>netty-all</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jline</groupId> <artifactId>jline</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.fusesource.jansi</groupId> <artifactId>jansi</artifactId> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.5.1</version> <executions> <execution> <id>copy-agent</id> <phase>process-test-classes</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>bigio-agent</artifactId> <version>${project.version}</version> <outputDirectory>${project.build.directory}/agents</outputDirectory> <destFileName>bigio-agent-${project.version}.jar</destFileName> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> </plugin> </plugins> </build> </project>