Download JAR files tagged by publish with all dependencies
nexus-staging from group us.irdev.bedrock (version 2.2.6)
We skip staging of some submodules, but if you skip staging in the last submodule it skips all staging (a serious error in the design of the nexus staging plugin that has been closed "wontfix" - issues.sonatype.org/browse/NEXUS-9138). The backup solution to that problem is to skip the deploy phase in the submodule. We want to deploy the artifact of bedrock-site to AWS, but not publish the war file to nexus. The recommended solution is to add this dummy node at the end of the submodule list.
Group: us.irdev.bedrock Artifact: nexus-staging
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact nexus-staging
Group us.irdev.bedrock
Version 2.2.6
Last update 26. July 2023
Organization not specified
URL https://bedrock.irdev.us/nexus-staging/
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group us.irdev.bedrock
Version 2.2.6
Last update 26. July 2023
Organization not specified
URL https://bedrock.irdev.us/nexus-staging/
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
taverna-reference-types from group org.apache.taverna.engine (version 3.1.0-incubating)
Implementations of certain SPIs to provide a core set of
functionality for the reference management framework. This
includes ExternalReference implementations to reference data
held in local files and URLs along with the appropriate
translate / publish logic.
Implementations in this package are tied only to the API, although
certain metadata files such as hibernate mappings are also included
where appropriate (these will be silently ignored if using a backing
store that is not hibernate based)
0 downloads
Artifact taverna-reference-types
Group org.apache.taverna.engine
Version 3.1.0-incubating
Last update 06. June 2016
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies taverna-reference-api, commons-codec, com.springsource.org.apache.commons.httpclient, log4j,
There are maybe transitive dependencies!
Group org.apache.taverna.engine
Version 3.1.0-incubating
Last update 06. June 2016
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies taverna-reference-api, commons-codec, com.springsource.org.apache.commons.httpclient, log4j,
There are maybe transitive dependencies!
neo4j-docbook-xml from group org.neo4j.build.plugins (version 4.5)
DocBook is an XML vocabulary that lets you create documents in a presentation-neutral form that captures
the logical structure of your content. Using free tools along with the DocBook XSL stylesheets, you can publish your
content as HTML pages and PDF files, and in many other formats.
This module is a fork by the Neo4j Team.
Artifact neo4j-docbook-xml
Group org.neo4j.build.plugins
Version 4.5
Last update 25. March 2014
Organization not specified
URL http://docbook.sourceforge.net/
License MIT like
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.neo4j.build.plugins
Version 4.5
Last update 25. March 2014
Organization not specified
URL http://docbook.sourceforge.net/
License MIT like
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
org.opencms.workplace.tools.publishqueue from group org.opencms.modules (version 8.5.0)
OpenCms-Module 'org.opencms.workplace.tools.publishqueue'.
<p>This module contains the tools for view the OpenCms publish queue.</p>
<p><i>(c) 2012 by Alkacon Software GmbH (http://www.alkacon.com).</i></p>
OpenCms is a Content Management System that is based on Open
Source Software. Complex Intranet and Internet websites can be
quickly and cost-effectively created, maintained and managed.
Group: org.opencms.modules Artifact: org.opencms.workplace.tools.publishqueue
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact org.opencms.workplace.tools.publishqueue
Group org.opencms.modules
Version 8.5.0
Last update 18. November 2012
Organization not specified
URL http://opencms.org
License GNU LESSER GENERAL PUBLIC LICENSE 2.1
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.opencms.modules
Version 8.5.0
Last update 18. November 2012
Organization not specified
URL http://opencms.org
License GNU LESSER GENERAL PUBLIC LICENSE 2.1
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
parent from group org.objectweb.dream (version 3)
Dream is a component-based framework dedicated to the construction
of communication middleware. It provides a component library and a
set of tools to build, configure and deploy middleware implementing
various communication paradigms: group communications, message
passing, event-reaction, publish-subscribe, etc. Dream builds upon
the Fractal component framework, which provides support for
hierarchical and dynamic composition.
Group: org.objectweb.dream Artifact: parent
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact parent
Group org.objectweb.dream
Version 3
Last update 04. December 2008
Organization ObjectWeb Consortium
URL http://dream.objectweb.org/
License LGPL
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.objectweb.dream
Version 3
Last update 04. December 2008
Organization ObjectWeb Consortium
URL http://dream.objectweb.org/
License LGPL
Dependencies amount 0
Dependencies No dependencies
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!
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!
mbassador from group net.engio (version 1.3.2)
Mbassador is a fast and flexible message bus system following the publish subscribe pattern.
It is designed for ease of use and aims to be feature rich and extensible
while preserving resource efficiency and performance.
It features:
declarative listener definition via annotations,
sync and/or async message delivery,
weak-references,
message filtering,
ordering of message handlers etc.
Artifact mbassador
Group net.engio
Version 1.3.2
Last update 07. March 2018
Organization not specified
URL https://github.com/bennidi/mbassador
License MIT license
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group net.engio
Version 1.3.2
Last update 07. March 2018
Organization not specified
URL https://github.com/bennidi/mbassador
License MIT license
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
NewsBoy from group com.elusive-code.newsboy (version 0.2)
Asynchronous publish-subscribe communication library.
Features:
1. Listeners are stored using WeakReferences to prevent memory leaks when they are not unsubscribed.
2. Uses fork-join framework for concurrent event delivery.
3. Publish methods returns collection of Futures that represent event notifications.
4. Supports ordered publishing: guaranteed to notify of the events in order they were published.
5. Provides EventSource and EventService interfaces for better integration with IOC containers and alternative implementations.
0 downloads
Artifact NewsBoy
Group com.elusive-code.newsboy
Version 0.2
Last update 20. April 2014
Organization not specified
URL https://github.com/elusive-code/NewsBoy
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies junit, commons-lang3,
There are maybe transitive dependencies!
Group com.elusive-code.newsboy
Version 0.2
Last update 20. April 2014
Organization not specified
URL https://github.com/elusive-code/NewsBoy
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies junit, commons-lang3,
There are maybe transitive dependencies!
pact-jvm-consumer-groovy-v3_2.10 from group au.com.dius (version 2.2.15)
pact-jvm-consumer-groovy-v3
===========================
Groovy DSL for Pact JVM implementing V3 specification changes.
##Dependency
The library is available on maven central using:
* group-id = `au.com.dius`
* artifact-id = `pact-jvm-consumer-groovy-v3_2.11`
* version-id = `2.2.x` or `3.0.x`
##Usage
Add the `pact-jvm-consumer-groovy-v3` library to your test class path. This provides a `PactMessageBuilder` class for you to use
to define your pacts.
If you are using gradle for your build, add it to your `build.gradle`:
dependencies {
testCompile 'au.com.dius:pact-jvm-consumer-groovy-v3_2.11:2.2.12'
}
## Consumer test for a message consumer
The `PactMessageBuilder` class provides a DSL for defining your message expectations. It works in much the same way as
the `PactBuilder` class for Request-Response interactions.
### Step 1 - define the message expectations
Create a test that uses the `PactMessageBuilder` to define a message expectation, and then call `run`. This will invoke
the given closure with a message for each one defined in the pact.
```groovy
def eventStream = new PactMessageBuilder().call {
serviceConsumer 'messageConsumer'
hasPactWith 'messageProducer'
given 'order with id 10000004 exists'
expectsToReceive 'an order confirmation message'
withMetaData(type: 'OrderConfirmed') // Can define any key-value pairs here
withContent(contentType: 'application/json') {
type 'OrderConfirmed'
audit {
userCode 'messageService'
}
origin 'message-service'
referenceId '10000004-2'
timeSent: '2015-07-22T10:14:28+00:00'
value {
orderId '10000004'
value '10.000000'
fee '10.00'
gst '15.00'
}
}
}
```
### Step 2 - call your message handler with the generated messages
This example tests a message handler that gets messages from a Kafka topic. In this case the Pact message is wrapped
as a Kafka `MessageAndMetadata`.
```groovy
eventStream.run { Message message ->
messageHandler.handleMessage(new MessageAndMetadata('topic', 1,
new kafka.message.Message(message.contentsAsBytes()), 0, null, valueDecoder))
}
```
### Step 3 - validate that the message was handled correctly
```groovy
def order = orderRepository.getOrder('10000004')
assert order.status == 'confirmed'
assert order.value == 10.0
```
### Step 4 - Publish the pact file
If the test was successful, a pact file would have been produced with the message from step 1.
Group: au.com.dius Artifact: pact-jvm-consumer-groovy-v3_2.10
Show all versions Show documentation Show source
Show all versions Show documentation Show source
0 downloads
Artifact pact-jvm-consumer-groovy-v3_2.10
Group au.com.dius
Version 2.2.15
Last update 17. September 2015
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 7
Dependencies pact-jvm-consumer-groovy_2.10, scala-library, groovy-all, json4s-native_2.10, pact-jvm-model-v3_2.10, slf4j-api, json4s-jackson_2.10,
There are maybe transitive dependencies!
Group au.com.dius
Version 2.2.15
Last update 17. September 2015
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 7
Dependencies pact-jvm-consumer-groovy_2.10, scala-library, groovy-all, json4s-native_2.10, pact-jvm-model-v3_2.10, slf4j-api, json4s-jackson_2.10,
There are maybe transitive dependencies!
Page 51 from 53 (items total 527)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy