All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by provide with all dependencies

Search JAR files by class name

elki-bundle from group de.lmu.ifi.dbs.elki (version 0.7.1)

Group: de.lmu.ifi.dbs.elki Artifact: elki-bundle
Show all versions Show documentation Show source 
 

6 downloads
Artifact elki-bundle
Group de.lmu.ifi.dbs.elki
Version 0.7.1
Last update 11. February 2016
Organization not specified
URL http://elki.dbs.ifi.lmu.de/
License GNU Affero General Public License (AGPL) version 3.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

elki-project from group de.lmu.ifi.dbs.elki (version 0.7.1)

ELKI is an open source (AGPLv3) data mining software written in Java. The focus of ELKI is research in algorithms, with an emphasis on unsupervised methods in cluster analysis and outlier detection. In order to achieve high performance and scalability, ELKI offers many data index structures such as the R*-tree that can provide major performance gains. ELKI is designed to be easy to extend for researchers and students in this domain, and welcomes contributions in particular of new methods. ELKI aims at providing a large collection of highly parameterizable algorithms, in order to allow easy and fair evaluation and benchmarking of algorithms.

Group: de.lmu.ifi.dbs.elki Artifact: elki-project
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact elki-project
Group de.lmu.ifi.dbs.elki
Version 0.7.1
Last update 11. February 2016
Organization ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München
URL http://elki.dbs.ifi.lmu.de/
License GNU Affero General Public License (AGPL) version 3.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

jenkins-maven-plugin from group ch.sourcepond.maven.plugins (version 1.2.0)

The Jenkins Maven Plugin allows to use the Jenkins CLI (command line interface) from within a Maven build. It allows the execution of any command supported by the CLI, see https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI for further information. Therefore, it downloads the current jenkins-cli.jar from ${project.ciManagement.url}/jnlpJars/jenkins-cli.jar and uses that artifact for interacting with the Jenkins server. The architecture of the Jenkins Maven Plugin follows the UNIX philosophy "do one thing and do it well": it does not provide any logic for specific tasks, for instance creating job configuration files. This can be done with another, more appropriate plugin and its result can then be specified as stdin to the Jenkins Maven Plugin.

Group: ch.sourcepond.maven.plugins Artifact: jenkins-maven-plugin
Show all versions Show documentation Show source 
 

4 downloads
Artifact jenkins-maven-plugin
Group ch.sourcepond.maven.plugins
Version 1.2.0
Last update 12. August 2015
Organization not specified
URL ${git.url}
License Apache License, Version 2.0
Dependencies amount 6
Dependencies maven-plugin-api, maven-core, commons-lang3, javax.inject, zt-exec, httpclient,
There are maybe transitive dependencies!

org.i3xx.step.clock from group org.i3xx.step (version 0.1.0)

A timer using the crontab syntax and additional binary input to provide a resolution of one second (1000 ms / 1000 millis / 1s). The timer uses the whiteboard pattern to notify the clients. There are only a few dependencies to commons-codec, osgi and osgi-blueprint. The bundle 'org.i3xx.step/org.i3xx.step.clockmongo' provides a store for the clock configuration based on mongodb. The additional dependency is 'org.mongodb/mongo-java-driver'. The bundle 'org.i3xx.util/org.i3xx.util.whiteboard' can be used to avoid a dependency to bundles used. In other words, your bundle can use the clock but need no dependency to the bundle 'org.i3xx.step.clock'. Take a look at the description there.

Group: org.i3xx.step Artifact: org.i3xx.step.clock
Show documentation Show source 
 

0 downloads
Artifact org.i3xx.step.clock
Group org.i3xx.step
Version 0.1.0
Last update 06. July 2015
Organization not specified
URL http://maven.apache.org
License Apache License, Version 2.0
Dependencies amount 5
Dependencies commons-codec, org.osgi.core, log4j, slf4j-api, slf4j-log4j12,
There are maybe transitive dependencies!

RBFNetwork from group nz.ac.waikato.cms.weka (version 1.0.8)

RBFNetwork implements a normalized Gaussian radial basisbasis function network. It uses the k-means clustering algorithm to provide the basis functions and learns either a logistic regression (discrete class problems) or linear regression (numeric class problems) on top of that. Symmetric multivariate Gaussians are fit to the data from each cluster. If the class is nominal it uses the given number of clusters per class. RBFRegressor implements radial basis function networks for regression, trained in a fully supervised manner using WEKA's Optimization class by minimizing squared error with the BFGS method. It is possible to use conjugate gradient descent rather than BFGS updates, which is faster for cases with many parameters, and to use normalized basis functions instead of unnormalized ones.

Group: nz.ac.waikato.cms.weka Artifact: RBFNetwork
Show all versions Show documentation Show source 
 

11 downloads
Artifact RBFNetwork
Group nz.ac.waikato.cms.weka
Version 1.0.8
Last update 16. January 2015
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/RBFNetwork
License GNU General Public License 3
Dependencies amount 1
Dependencies weka-dev,
There are maybe transitive dependencies!

databene-benerator from group org.databene (version 0.9.8)

'Benerator' is a framework for creating realistic and valid high-volume test data, used for testing (unit/integration/load) and showcase setup. Metadata constraints are imported from systems and/or configuration files. Data can imported from and exported to files and systems, anonymized or generated from scratch. Domain packages provide reusable generators for creating domain-specific data as names and addresses internationalizable in language and region. It is strongly customizable with plugins and configuration options.

Group: org.databene Artifact: databene-benerator
Show all versions Show documentation Show source 
 

21 downloads
Artifact databene-benerator
Group org.databene
Version 0.9.8
Last update 25. September 2014
Organization Volker Bergmann
URL http://databene.org/databene-benerator
License GNU Public License
Dependencies amount 9
Dependencies jdbacl, databene-script, databene-formats, databene-commons, contiperf, validation-api, junit, antlr-runtime, freemarker,
There are maybe transitive dependencies!

jdbctemplatetool from group org.crazycake (version 1.0.4-RELEASE)

Spring JdbcTemplate did very convient and useful, but it also has some disadvantages or in another word “inconvenient”. For example, you can’t just pass an object and tell JdbcTemplate to turn it into a sql and save to database just like hibernate does. Alright, you may say “JdbcTemplate doesn’t need you to write hbm.xml , so it’s understandable”. But is it true that this thing is impossible to achieve? And also you know JdbcTemplate can auto turn the result of a query to a list of persistent object a.k.a PO, but when you want to do this you will meet a problem: “How to ?”.Because you can’t find any function of JdbcTemplate to pass a sql and a PO class as we expected. After you google for it, you’ve been told you can create a BeanPropertyRowMapper to deal with this. But isn’t it could be more easier? Based on those questions I create JdbcTemplateTool which can provide these features.

Group: org.crazycake Artifact: jdbctemplatetool
Show documentation Show source 
 

0 downloads
Artifact jdbctemplatetool
Group org.crazycake
Version 1.0.4-RELEASE
Last update 24. September 2014
Organization not specified
URL https://github.com/alexxiyang/jdbctemplatetool
License The Apache Software License, Version 2.0
Dependencies amount 6
Dependencies spring-orm, persistence-api, slf4j-api, slf4j-log4j12, spring-core, camel-name-utils,
There are maybe transitive dependencies!

VectorPrintReport from group com.vectorprint (version 13.1)

This powerful reporting library aims to simplify producing reports using iText. Looking at producing reports with iText the most demanding tasks are how to get from data to report blocks, how to style those blocks and how to evaluate (debug) the resulting report. Exactly those three major tasks are well supported by the VectorPrint report library: - (combination of) xml configuration and annotations to transform existing Java data objects into report block - provide styling information (css like) seperate from code - a firebug like debug mode to help evaluate your report.

Group: com.vectorprint Artifact: VectorPrintReport
Show all versions Show documentation Show source 
 

0 downloads
Artifact VectorPrintReport
Group com.vectorprint
Version 13.1
Last update 24. June 2014
Organization VectorPrint
URL http://vectorprintreport.java.net
License GNU Lesser General Public License
Dependencies amount 3
Dependencies itext, sac, VectorPrintConfig,
There are maybe transitive dependencies!

jeuron-project from group org.jeuron (version 0.4.0)

The Jeuron Application Platform is a lightweight framework to assemble software components intended to support multiple project and deployment scenarios while also providing an environment for testing and debugging. The platform is comprised of a set of packages which provide transport, messaging, configuration, and execution services designed to create a configurable, scalable, and distributed application environment. The low resource model permits the platform to be instantiated during each build cycle and to be deployed at all levels of the application hierarchy such as application servers, web servers, and mobile or wired workstations.

Group: org.jeuron Artifact: jeuron-project
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact jeuron-project
Group org.jeuron
Version 0.4.0
Last update 25. April 2014
Organization not specified
URL Not specified
License GNU Lesser General Public License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

jeuron from group org.jeuron (version 0.4.0)

Group: org.jeuron Artifact: jeuron
Show documentation Show source 
 

0 downloads
Artifact jeuron
Group org.jeuron
Version 0.4.0
Last update 24. April 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 272 from 281 (items total 2807)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy