Download JAR files tagged by final with all dependencies
xapi-jre from group net.wetheinter (version 0.5)
This module exists solely to package all other jre modules into a single
uber jar. This makes deploying to non-mavenized targets much easier.
Of course, you would be wise to inherit your dependencies individually;
the uber jar is intended for projects like collide,
which have complex configuration, and adding many jars would be a pain.
It also allows dependent modules to discover new features,
as modules graduate from labs to final, they will be added here.
As you type X_, autocomplete will expose newly added services.
2 downloads
Artifact xapi-jre
Group net.wetheinter
Version 0.5
Last update 30. May 2015
Organization not specified
URL WeTheInter.net
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group net.wetheinter
Version 0.5
Last update 30. May 2015
Organization not specified
URL WeTheInter.net
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
keystone-plugin from group org.intelligents-ia (version 3.3)
Artifact keystone-plugin
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 5
Dependencies keystone-boot, maven-plugin-api, maven-archiver, maven-project, maven-dependency-tree,
There are maybe transitive dependencies!
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 5
Dependencies keystone-boot, maven-plugin-api, maven-archiver, maven-project, maven-dependency-tree,
There are maybe transitive dependencies!
keystone-boot from group org.intelligents-ia (version 3.3)
Artifact keystone-boot
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
keystone from group org.intelligents-ia (version 3.3)
Keystone project is a bootstrap that loads your application and its dependencies from a single archive.
With his maven plugin and few line of configuration, your application will be available with all his dependencies in a single archive.
The four main ideas which make the difference with other solution are:
1. all dependencies are not exploded in final archive, 'jar' file stay without any modification, so manifest also...
2. use our maven plugin to package all that you need (and we'll loading dependencies automatically for you)
3. you could load native library
4. you could restart your application
Why named Keystone?
1. Stone wedge-shaped arch which maintains a vault [Architecture].
2. A central element on which everything depends.
Group: org.intelligents-ia Artifact: keystone
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact keystone
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization Intelligents-ia
URL https://github.com/geronimo-iia/keystone
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization Intelligents-ia
URL https://github.com/geronimo-iia/keystone
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
quality-test from group net.sf.qualitycheck (version 1.3)
The goal of quality-test is to provide a small Java library for
basic code quality checks within unit tests.
It is discouraged to use quality-test in production code. The checks
provided in this library are designed to be used in unit-tests.
The checks and utilities provided in this package check static properties
of classes, for example whether classes are marked final or constructors are private.
Additionally, there are utils to give additional code coverage for private constructors.
Quality-Test often can be used together with Google Reflections (http://code.google.com/p/reflections/)
to perform checks such as, assure that every class in package *.dto.* is final
or make sure that no class in the package *.controller.* contains any non-final static variables.
1 downloads
Artifact quality-test
Group net.sf.qualitycheck
Version 1.3
Last update 01. August 2013
Organization not specified
URL http://qualitycheck.sourceforge.net/modules/quality-test/
License The Apache Software License, Version 2.0
Dependencies amount 11
Dependencies quality-check, jsr305, guava, commons-logging, junit, slf4j-api, slf4j-simple, powermock-module-junit4, powermock-api-easymock, easymock, cglib,
There are maybe transitive dependencies!
Group net.sf.qualitycheck
Version 1.3
Last update 01. August 2013
Organization not specified
URL http://qualitycheck.sourceforge.net/modules/quality-test/
License The Apache Software License, Version 2.0
Dependencies amount 11
Dependencies quality-check, jsr305, guava, commons-logging, junit, slf4j-api, slf4j-simple, powermock-module-junit4, powermock-api-easymock, easymock, cglib,
There are maybe transitive dependencies!
geokey from group io.github.markrileybot (version 0.1.0)
# geokey
K Dimensional Z-Order curve utils.
[![Build Status](https://travis-ci.org/markrileybot/geokey.svg?branch=master)](https://travis-ci.org/markrileybot/geokey)
[![Coverage Status](https://coveralls.io/repos/github/markrileybot/geokey/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/geokey?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)
## Building
./gradlew build
## Gradle dependency
See https://search.maven.org/artifact/io.github.markrileybot/geokey/
## Using
### Use built in keys to make geohashes
```java
import org.geokey.GeoKey;
// Make a geo hash key
String key = new GeoKey().setLatitude(48.669).setLongitude(-4.329).toString(); // "gbsuv7ztqzpts82uzfwq5e1bp"
// parse a geo hash key
GeoKey gk = new GeoKey("gbsuv7ztqzpts82uzfwq5e1bp");
```
### Make a special purpose K-Dimensional key
```java
public class GeoTimeKey extends KDKey {
private static final KDKeySpec spec = new KDKeySpec.Builder()
.addDim(-180, 180, 1)
.addDim(-90, 90, 1)
.addDim(0, 1L << 62, 1)
.setAlphabet(Alphabet.GEO_TIME_HASH)
.build();
public GeoTimeKey() {
super(spec);
}
public GeoTimeKey(String s) {
super(spec, s);
}
public GeoTimeKey(byte[] s) {
super(spec, s);
}
public GeoTimeKey setLatitude(double latitude) {
set(1, latitude);
return this;
}
public double getLatitude() {
return super.get(1);
}
public GeoTimeKey setLongitude(double longitude) {
set(0, longitude);
return this;
}
public double getLongitude() {
return super.get(0);
}
public GeoTimeKey setTime(long time) {
set(2, time);
return this;
}
public long getTime() {
return (long) get(2);
}
}
```
0 downloads
Artifact geokey
Group io.github.markrileybot
Version 0.1.0
Last update 20. June 2022
Organization not specified
URL https://github.com/markrileybot/geokey
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group io.github.markrileybot
Version 0.1.0
Last update 20. June 2022
Organization not specified
URL https://github.com/markrileybot/geokey
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
xapi from group net.wetheinter (version 0.5)
XApi is a dependency injection, service-oriented, polyglot java framework.
It is comprised of standalone modules for use in web, desktop and mobile java applications.
This codebase enables complete reuse of all code across your java stack,
as well as the ability to easily define your own Platform, so you can
build your own customized runtime environment to extend or replace existing platforms.
It is currently geared towards servlets and gwt clients, but the target we are currently developing include:
java, gwt [webkit, firefox, ie], javafx, playn [android, ios, flash], appengine & vert.x
For Google Web Toolkit, we also include reflection support,
more complete emulation of java.lang.Class, zero-overhead dependency injection,
a range of code generation utilities, and even "magic-method injection"
(for production compiles any method in the app can be swapped out with
others based on configuration properties, or any AST mangling / code generating
methods you wish to write).
There is also a bytecode transformer in the works which will replace calls
into the DI utility with direct references to static final factories,
to allow the java compiler to completely erase all injection overhead in all java runtimes.
Group: net.wetheinter Artifact: xapi
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact xapi
Group net.wetheinter
Version 0.5
Last update 30. May 2015
Organization The Internet Party
URL https://github.com/${github.account}/xapi
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group net.wetheinter
Version 0.5
Last update 30. May 2015
Organization The Internet Party
URL https://github.com/${github.account}/xapi
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
gwt-reflect from group net.wetheinter (version 2.5.1)
Artifact gwt-reflect
Group net.wetheinter
Version 2.5.1
Last update 23. February 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies xapi-dev-source, gwt-method-inject,
There are maybe transitive dependencies!
Group net.wetheinter
Version 2.5.1
Last update 23. February 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies xapi-dev-source, gwt-method-inject,
There are maybe transitive dependencies!
gwt-method-inject from group net.wetheinter (version 2.5.1)
Artifact gwt-method-inject
Group net.wetheinter
Version 2.5.1
Last update 23. February 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group net.wetheinter
Version 2.5.1
Last update 23. February 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
pact-jvm-consumer-junit5_2.11 from group au.com.dius (version 3.5.24)
pact-jvm-consumer-junit5
========================
JUnit 5 support for Pact consumer tests
## Dependency
The library is available on maven central using:
* group-id = `au.com.dius`
* artifact-id = `pact-jvm-consumer-junit5_2.12`
* version-id = `3.5.x`
## Usage
### 1. Add the Pact consumer test extension to the test class.
To write Pact consumer tests with JUnit 5, you need to add `@ExtendWith(PactConsumerTestExt)` to your test class. This
replaces the `PactRunner` used for JUnit 4 tests. The rest of the test follows a similar pattern as for JUnit 4 tests.
```java
@ExtendWith(PactConsumerTestExt.class)
class ExampleJavaConsumerPactTest {
```
### 2. create a method annotated with `@Pact` that returns the interactions for the test
For each test (as with JUnit 4), you need to define a method annotated with the `@Pact` annotation that returns the
interactions for the test.
```java
@Pact(provider="test_provider", consumer="test_consumer")
public RequestResponsePact createPact(PactDslWithProvider builder) {
return builder
.given("test state")
.uponReceiving("ExampleJavaConsumerPactTest test interaction")
.path("/")
.method("GET")
.willRespondWith()
.status(200)
.body("{\"responsetest\": true}")
.toPact();
}
```
### 3. Link the mock server with the interactions for the test with `@PactTestFor`
Then the final step is to use the `@PactTestFor` annotation to tell the Pact extension how to setup the Pact test. You
can either put this annotation on the test class, or on the test method. For examples see
[ArticlesTest](src/test/java/au/com/dius/pact/consumer/junit5/ArticlesTest.java) and
[MultiTest](src/test/groovy/au/com/dius/pact/consumer/junit5/MultiTest.groovy).
The `@PactTestFor` annotation allows you to control the mock server in the same way as the JUnit 4 `PactProviderRule`. It
allows you to set the hostname to bind to (default is `localhost`) and the port (default is to use a random port). You
can also set the Pact specification version to use (default is V3).
```java
@ExtendWith(PactConsumerTestExt.class)
@PactTestFor(providerName = "ArticlesProvider", port = "1234")
public class ExampleJavaConsumerPactTest {
```
**NOTE on the hostname**: The mock server runs in the same JVM as the test, so the only valid values for hostname are:
| hostname | result |
| -------- | ------ |
| `localhost` | binds to the address that localhost points to (normally the loopback adapter) |
| `127.0.0.1` or `::1` | binds to the loopback adapter |
| host name | binds to the default interface that the host machines DNS name resolves to |
| `0.0.0.0` or `::` | binds to the all interfaces on the host machine |
#### Matching the interactions by provider name
If you set the `providerName` on the `@PactTestFor` annotation, then the first method with a `@Pact` annotation with the
same provider name will be used. See [ArticlesTest](src/test/java/au/com/dius/pact/consumer/junit5/ArticlesTest.java) for
an example.
#### Matching the interactions by method name
If you set the `pactMethod` on the `@PactTestFor` annotation, then the method with the provided name will be used (it still
needs a `@Pact` annotation). See [MultiTest](src/test/groovy/au/com/dius/pact/consumer/junit5/MultiTest.groovy) for an example.
### Injecting the mock server into the test
You can get the mock server injected into the test method by adding a `MockServer` parameter to the test method.
```java
@Test
void test(MockServer mockServer) {
HttpResponse httpResponse = Request.Get(mockServer.getUrl() + "/articles.json").execute().returnResponse();
assertThat(httpResponse.getStatusLine().getStatusCode(), is(equalTo(200)));
}
```
This helps with getting the base URL of the mock server, especially when a random port is used.
## Unsupported
The current implementation does not support tests with multiple providers. This will be added in a later release.
Group: au.com.dius Artifact: pact-jvm-consumer-junit5_2.11
Show all versions Show documentation Show source
Show all versions Show documentation Show source
1 downloads
Artifact pact-jvm-consumer-junit5_2.11
Group au.com.dius
Version 3.5.24
Last update 04. November 2018
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 9
Dependencies kotlin-stdlib-jdk8, kotlin-reflect, slf4j-api, groovy-all, kotlin-logging, scala-library, scala-logging_2.11, pact-jvm-consumer_2.11, junit-jupiter-api,
There are maybe transitive dependencies!
Group au.com.dius
Version 3.5.24
Last update 04. November 2018
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 9
Dependencies kotlin-stdlib-jdk8, kotlin-reflect, slf4j-api, groovy-all, kotlin-logging, scala-library, scala-logging_2.11, pact-jvm-consumer_2.11, junit-jupiter-api,
There are maybe transitive dependencies!
Page 39 from 3 (items total 400)