core-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.gridkit.3rd.btrace</groupId> <artifactId>core-api</artifactId> <version>2.0.1-nimble</version> </dependency>
<?xml version="1.0"?> <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>org.gridkit.3rd.btrace</groupId> <artifactId>btrace-parent</artifactId> <version>2.0.1-nimble</version> <relativePath>../btrace-parent</relativePath> </parent> <artifactId>core-api</artifactId> <name>BTrace API</name> <description> The low level BTrace APIs - annotations, wireio, extensions. </description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.6</version> <optional>true</optional> </dependency> </dependencies> </project>