Skip to content

Commit

Permalink
added a first version of hawkular metrics support - only basic metric…
Browse files Browse the repository at this point in the history
…s are created, further improvements need to be made!
  • Loading branch information
EricWittmann committed Mar 11, 2016
1 parent ad6e6e3 commit 62e92d2
Show file tree
Hide file tree
Showing 35 changed files with 1,789 additions and 129 deletions.
1 change: 1 addition & 0 deletions common/net/.gitignore
@@ -0,0 +1 @@
/target/
52 changes: 52 additions & 0 deletions common/net/pom.xml
@@ -0,0 +1,52 @@
<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>io.apiman</groupId>
<artifactId>apiman-common</artifactId>
<version>1.2.3-SNAPSHOT</version>
</parent>
<artifactId>apiman-common-net</artifactId>
<packaging>bundle</packaging>
<name>apiman-common-net</name>

<dependencies>
<!-- Project Dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>apiman-common-config</artifactId>
</dependency>

<!-- Third Party Dependencies -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 62e92d2

Please sign in to comment.