common-callback
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.vmlens</groupId>
<artifactId>common-callback</artifactId>
<version>1.1.5</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.vmlens</groupId>
<artifactId>vmlens</artifactId>
<version>1.1.5</version>
<relativePath>../vmlens/pom.xml</relativePath>
</parent>
<artifactId>common-callback</artifactId>
<url>https://github.com/vmlens/vlmens</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>vmlens</name>
<url>https://www.vmlens.com</url>
</organization>
<developers>
<developer>
<name>Thomas Krieger</name>
<email>thomas.krieger@vmlens.com</email>
<organization>vmlens</organization>
<organizationUrl>https://www.vmlens.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:vmlens/vlmens.git</connection>
<developerConnection>scm:git:git@github.com:vmlens/vlmens.git</developerConnection>
<url>git@github.com:vmlens/vlmens.git</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<excludePackageNames>*.internal.*</excludePackageNames>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.vmlens</groupId>
<artifactId>concurrent-junit</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
</project>