Download newts-api-1.4.2.jar file

Introduction

You can download newts-api-1.4.2.jar in this page.

License

Open Source

Type List

newts-api-1.4.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.opennms.newts/newts-api/pom.properties
META-INF/maven/org.opennms.newts/newts-api/pom.xml
org.opennms.newts.api.Absolute.class
org.opennms.newts.api.BlockingThreadPoolExecutor.class
org.opennms.newts.api.Context.class
org.opennms.newts.api.Counter.class
org.opennms.newts.api.DefaultSampleProcessorService.class
org.opennms.newts.api.Derive.class
org.opennms.newts.api.Duration.class
org.opennms.newts.api.Element.class
org.opennms.newts.api.Gauge.class
org.opennms.newts.api.Measurement.class
org.opennms.newts.api.MetricType.class
org.opennms.newts.api.Resource.class
org.opennms.newts.api.Results.class
org.opennms.newts.api.Sample.class
org.opennms.newts.api.SampleProcessor.class
org.opennms.newts.api.SampleProcessorService.class
org.opennms.newts.api.SampleRepository.class
org.opennms.newts.api.SampleSelectCallback.class
org.opennms.newts.api.Timestamp.class
org.opennms.newts.api.ValueType.class
org.opennms.newts.api.query.AggregationFunction.class
org.opennms.newts.api.query.Calculation.class
org.opennms.newts.api.query.CalculationFunction.class
org.opennms.newts.api.query.Datasource.class
org.opennms.newts.api.query.ResultDescriptor.class
org.opennms.newts.api.query.StandardAggregationFunctions.class
org.opennms.newts.api.search.BooleanClause.class
org.opennms.newts.api.search.BooleanQuery.class
org.opennms.newts.api.search.Indexer.class
org.opennms.newts.api.search.Operator.class
org.opennms.newts.api.search.Query.class
org.opennms.newts.api.search.QueryBuilder.class
org.opennms.newts.api.search.SearchResults.class
org.opennms.newts.api.search.Searcher.class
org.opennms.newts.api.search.Term.class
org.opennms.newts.api.search.TermQuery.class

Pom

newts-api-1.4.2.pom file content.

<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"
>

  <parent>
    <groupId>org.opennms.newts</groupId>
    <artifactId>newts-parent</artifactId>
    <version>1.4.2</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>

  <artifactId>newts-api</artifactId>
  <packaging>bundle</packaging>

  <name>New Timeseries Datastore :: API</name>
  
  <build>
    <plugins>
      <plugin>
	<groupId>org.apache.felix</groupId>
	<artifactId>maven-bundle-plugin</artifactId>
	<extensions>true</extensions>
	<configuration>
	  <instructions>
	    <Export-Package>
	      org.opennms.newts.api* 
	    </Export-Package>
	    <Import-Package>
	      <![CDATA[javax.inject*;resolution:=optional,*]]>
	    </Import-Package>
	    <Bundle-DocURL>https://newts.io</Bundle-DocURL>
	  </instructions>
	</configuration>
      </plugin>
      
    </plugins>
  </build>

  <dependencies>

    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.inject</groupId>
      <artifactId>guice</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
    	<groupId>org.apache.commons</groupId>
    	<artifactId>commons-jexl</artifactId>
    </dependency>
    <!--  this is needed for jexl but only at runtime so we don't end up with code deps -->
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>jcl-over-slf4j</artifactId>
      <scope>runtime</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <scope>test</scope>
    </dependency>
    

  </dependencies>

</project>

POM Entry

<dependency>
   <groupId>org.opennms.newts</groupId>
   <artifactId>newts-api</artifactId>
   <version>1.4.2</version>
</dependency>

Download

If you think the following newts-api-1.4.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download newts-api-1.4.2.jar file




PreviousNext

Related