Download JAR files tagged by github with all dependencies
autograding-github-action from group edu.hm.hafner (version 3.16.0)
Group: edu.hm.hafner Artifact: autograding-github-action
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact autograding-github-action
Group edu.hm.hafner
Version 3.16.0
Last update 29. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies autograding-model, github-api,
There are maybe transitive dependencies!
Group edu.hm.hafner
Version 3.16.0
Last update 29. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies autograding-model, github-api,
There are maybe transitive dependencies!
proxycian_bytebuddy from group one.edee.oss (version 1.4.0)
0 downloads
Artifact proxycian_bytebuddy
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies jsr305, lombok, commons-lang3,
There are maybe transitive dependencies!
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies jsr305, lombok, commons-lang3,
There are maybe transitive dependencies!
proxycian_javassist from group one.edee.oss (version 1.4.0)
0 downloads
Artifact proxycian_javassist
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies jsr305, lombok, commons-lang3,
There are maybe transitive dependencies!
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 3
Dependencies jsr305, lombok, commons-lang3,
There are maybe transitive dependencies!
proxycian_core from group one.edee.oss (version 1.4.0)
0 downloads
Artifact proxycian_core
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
proxycian from group one.edee.oss (version 1.4.0)
Small Java library for generating dynamic proxies on top of [ByteBuddy](https://github.com/raphw/byte-buddy)
or [Javassist](https://github.com/jboss-javassist/javassist). You can generate data transfer objects, rich
traits or even whole implicit DAO implementations dynamically at runtime easily. This library solves the complex
stuff, so you can focus on application logic. Serializability, cloning are already solved by us. We also aim for
transparent and easily debuggable proxies, because as we know proxies is usually part of "magic" for the team.
Hence, the name of this library - Proxycian as a magician for the proxies ;)
Group: one.edee.oss Artifact: proxycian
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact proxycian
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization FG Forrest, a.s.
URL https://github.com/FgForrest/Proxycian/
License MIT License
Dependencies amount 3
Dependencies jsr305, lombok, commons-lang3,
There are maybe transitive dependencies!
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization FG Forrest, a.s.
URL https://github.com/FgForrest/Proxycian/
License MIT License
Dependencies amount 3
Dependencies jsr305, lombok, commons-lang3,
There are maybe transitive dependencies!
proxycian_tests from group one.edee.oss (version 1.4.0)
Artifact proxycian_tests
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies proxycian_bytebuddy, proxycian_javassist,
There are maybe transitive dependencies!
Group one.edee.oss
Version 1.4.0
Last update 05. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies proxycian_bytebuddy, proxycian_javassist,
There are maybe transitive dependencies!
heatshrink-java from group io.github.markrileybot (version 1.0.1)
# heatshrink-java
Java library used to encode/decode [heatshrink](https://github.com/atomicobject/heatshrink) compressed data.
## Building
```bash
./gradlew build
```
## Gradle dependency
See https://search.maven.org/artifact/io.github.markrileybot/heatshrink-java/
## Usage
### Java library
```java
int windowSize = 9;
int lookaheadSize = 8;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try(HsOutputStream out = new HsOutputStream(baos, windowSize, lookaheadSize)) {
out.write("ABCABCABCABCABCABC".getBytes());
}
try(HsInputStream hsi = new HsInputStream(new ByteArrayInutStream(baos.toByteArray()), windowSize, lookaheadSize)) {
byte[] res = new byte[512];
int len = hsi.read(res);
System.out.println(new String(res, 0, len));
}
```
### CLI
```bash
$ java -jar heatshrink-java-exe.jar [-h] [-e|-d] [-v] [-w SIZE] [-l BITS] [IN_FILE] [OUT_FILE]
```
## Status
[![Build Status](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml/badge.svg)](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml)
[![Coverage Status](https://coveralls.io/repos/github/markrileybot/heatshrink-java/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/heatshrink-java?branch=master)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey)
Group: io.github.markrileybot Artifact: heatshrink-java
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact heatshrink-java
Group io.github.markrileybot
Version 1.0.1
Last update 19. October 2022
Organization not specified
URL https://github.com/markrileybot/heatshrink-java
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group io.github.markrileybot
Version 1.0.1
Last update 19. October 2022
Organization not specified
URL https://github.com/markrileybot/heatshrink-java
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
azure-media-videoanalyzer-edge from group com.azure (version 1.0.0-beta.6)
Azure Video Analyzer provides a platform to build intelligent video applications that span the edge and the cloud. The platform offers the capability to capture, record, and analyze live videos along with publishing the results, video, and video analytics, to Azure services in the cloud or the edge. It is designed to be an extensible platform, enabling you to connect different video analysis edge modules such as Cognitive services containers, custom edge modules built by you with open-source machine learning models or custom models trained with your own data. You can then use them to analyze live video without worrying about the complexity of building and running a live video pipeline. Use the client library for Video Analyzer Edge to simplify interactions with the Microsoft Azure IoT SDKs (https://github.com/azure/azure-iot-sdks) and programmatically construct pipeline topologies and live pipelines.
Group: com.azure Artifact: azure-media-videoanalyzer-edge
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact azure-media-videoanalyzer-edge
Group com.azure
Version 1.0.0-beta.6
Last update 30. April 2022
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies azure-core,
There are maybe transitive dependencies!
Group com.azure
Version 1.0.0-beta.6
Last update 30. April 2022
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies azure-core,
There are maybe transitive dependencies!
forker-client from group com.sshtools (version 1.6.4)
This is client side library for forker, and the one you most likely want to use in your own applications.
It provides the ProcessBuilder replacement, ForkerBuilder, as well the helpers in OSCommand. ForkerBuilder is
capable of launching processes using non-blocking I/O or attached to a PTY. It has many additional features
not available in the standard process builder including permission elevation, daemonize, processor affinity
and more.
Parts of the non-blocking API are based on NuProcess (https://github.com/brettwooldridge/NuProcess)
0 downloads
Artifact forker-client
Group com.sshtools
Version 1.6.4
Last update 14. October 2021
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies forker-common,
There are maybe transitive dependencies!
Group com.sshtools
Version 1.6.4
Last update 14. October 2021
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies forker-common,
There are maybe transitive dependencies!
MavenParent from group com.salesforce.maven (version 2.0.1)
This project provides the best of maven easily consumable a maven parent project, called MavenParent. With this project you get:
Checkstyle and PMD checks that will work by default in eclipse with m2e-code-quality.
OWASP vulnerability checks of your dependencies.
Easy application of BSD-3 clause license to all your code with mycila-license plugin.
The ability to easily enforce semantic version on a jar project with japicmp.
Prevent duplicates on your classpath with basepom's duplicate-finder.
All of the above can be configured or disabled easily with properties, just check their docs, except takari.
A whole slew of pretty maven reports including the above are generated in the maven site.
The ability to easily deploy to oss nexus, and publish maven generated sites back to github's sites pages.
Group: com.salesforce.maven Artifact: MavenParent
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact MavenParent
Group com.salesforce.maven
Version 2.0.1
Last update 23. April 2021
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group com.salesforce.maven
Version 2.0.1
Last update 23. April 2021
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Page 299 from 3 (items total 3021)