Development Tools

RoboVM Objective-C Bridge

com.mobidevelop.robovm : robovm-objc

The RoboVM compiler translates Java bytecode into native ARM or x86 code. Apps run directly on the CPU. No interpreter or virtual machine involved.

Last Version: 2.3.16

Release Date:

Last Version: 2.1.0

Release Date:

Atlas :: iTests Field Action Override

io.atlasmap : atlas-itests-fieldaction-override

AtlasMap Java backend implementation and design time REST service resources

Last Version: 2.2.3

Release Date:

org-netbeans-modules-editor-settings

org.netbeans.api : org-netbeans-modules-editor-settings

Apache NetBeans is an integrated development environment, tooling platform, and application framework.

Last Version: RELEASE140

Release Date:

org-netbeans-modules-csl-types

org.netbeans.api : org-netbeans-modules-csl-types

Apache NetBeans is an integrated development environment, tooling platform, and application framework.

Last Version: RELEASE140

Release Date:

Last Version: 4.1.0-M1

Release Date:

Last Version: 0.5.0

Release Date:

Last Version: 2.0.4

Release Date:

JGit - Large File Storage

org.openl.jgit : org.eclipse.jgit.lfs

JGit Large File Storage (LFS) implementation.

Last Version: 6.1.0.202205052100-r

Release Date:

Conditional Authentication - User and Roles Related Functions

org.wso2.carbon.identity.conditional.auth.functions : org.wso2.carbon.identity.conditional.auth.functions.user

WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.

Last Version: 1.2.2

Release Date:

Conditional Authentication - Analytics Related Functions

org.wso2.carbon.identity.conditional.auth.functions : org.wso2.carbon.identity.conditional.auth.functions.analytics

WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.

Last Version: 1.2.2

Release Date:

Conditional Authentication - Notification Related Functions

org.wso2.carbon.identity.conditional.auth.functions : org.wso2.carbon.identity.conditional.auth.functions.notification

WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.

Last Version: 1.2.2

Release Date:

Wicket Native WebSocket Core

org.apache.wicket : wicket-native-websocket-core

Provides the common code needed for the different integrations with web container's WebSocket implementations

Last Version: 9.10.0

Release Date:

BridJ (NativeLibs4Java C/C++ Interop Layer)

com.nativelibs4java : bridj

NativeLibs4Java is an umbrella project that gathers ready-to-use Java libraries that wrap various native libraries. Most of these wrappers are created automatically by JNAerator.

Last Version: 0.7.0

Release Date:

Last Version: 0.4.4

Release Date:

Last Version: 0.4.4

Release Date:

pact-jvm-provider_2.11

au.com.dius : pact-jvm-provider_2.11

Pact provider ============= sub project of https://github.com/DiUS/pact-jvm The pact provider is responsible for verifying that an API provider adheres to a number of pacts authored by its clients This library provides the basic tools required to automate the process, and should be usable on its own in many instances. Framework and build tool specific bindings will be provided in separate libraries that build on top of this core functionality. ### Provider State Before each interaction is executed, the provider under test will have the opportunity to enter a state. Generally the state maps to a set of fixture data for mocking out services that the provider is a consumer of (they will have their own pacts) The pact framework will instruct the test server to enter that state by sending: POST "${config.stateChangeUrl.url}/setup" { "state" : "${interaction.stateName}" } ### An example of running provider verification with junit This example uses Groovy, JUnit 4 and Hamcrest matchers to run the provider verification. As the provider service is a DropWizard application, it uses the DropwizardAppRule to startup the service before running any test. **Warning:** It only grabs the first interaction from the pact file with the consumer, where there could be many. (This could possibly be solved with a parameterized test) ```groovy class ReadmeExamplePactJVMProviderJUnitTest { @ClassRule public static TestRule startServiceRule = new DropwizardAppRule<DropwizardConfiguration>( TestDropwizardApplication.class, ResourceHelpers.resourceFilePath("dropwizard/test-config.yaml")) private static ProviderInfo serviceProvider private static Pact<RequestResponseInteraction> testConsumerPact private static ConsumerInfo consumer @BeforeClass static void setupProvider() { serviceProvider = new ProviderInfo("Dropwizard App") serviceProvider.setProtocol("http") serviceProvider.setHost("localhost") serviceProvider.setPort(8080) serviceProvider.setPath("/") consumer = new ConsumerInfo() consumer.setName("test_consumer") consumer.setPactSource(new UrlSource( ReadmeExamplePactJVMProviderJUnitTest.getResource("/pacts/zoo_app-animal_service.json").toString())) testConsumerPact = PactReader.loadPact(consumer.getPactSource()) as Pact<RequestResponseInteraction> } @Test void runConsumerPacts() { // grab the first interaction from the pact with consumer Interaction interaction = testConsumerPact.interactions.get(0) // setup the verifier ProviderVerifier verifier = setupVerifier(interaction, serviceProvider, consumer) // setup any provider state // setup the client and interaction to fire against the provider ProviderClient client = new ProviderClient(serviceProvider, new HttpClientFactory()) Map<String, Object> failures = new HashMap<>() verifier.verifyResponseFromProvider(serviceProvider, interaction, interaction.getDescription(), failures, client) if (!failures.isEmpty()) { verifier.displayFailures(failures) } // Assert all good assertThat(failures, is(empty())) } private ProviderVerifier setupVerifier(Interaction interaction, ProviderInfo provider, ConsumerInfo consumer) { ProviderVerifier verifier = new ProviderVerifier() verifier.initialiseReporters(provider) verifier.reportVerificationForConsumer(consumer, provider) if (!interaction.getProviderStates().isEmpty()) { for (ProviderState providerState: interaction.getProviderStates()) { verifier.reportStateForInteraction(providerState.getName(), provider, consumer, true) } } verifier.reportInteractionDescription(interaction) return verifier } } ``` ### An example of running provider verification with spock This example uses groovy and spock to run the provider verification. Again the provider service is a DropWizard application, and is using the DropwizardAppRule to startup the service. This example runs all interactions using spocks Unroll feature ```groovy class ReadmeExamplePactJVMProviderSpockSpec extends Specification { @ClassRule @Shared TestRule startServiceRule = new DropwizardAppRule<DropwizardConfiguration>(TestDropwizardApplication, ResourceHelpers.resourceFilePath('dropwizard/test-config.yaml')) @Shared ProviderInfo serviceProvider ProviderVerifier verifier def setupSpec() { serviceProvider = new ProviderInfo('Dropwizard App') serviceProvider.protocol = 'http' serviceProvider.host = 'localhost' serviceProvider.port = 8080 serviceProvider.path = '/' serviceProvider.hasPactWith('zoo_app') { pactSource = new FileSource(new File(ResourceHelpers.resourceFilePath('pacts/zoo_app-animal_service.json'))) } } def setup() { verifier = new ProviderVerifier() } def cleanup() { // cleanup provider state // ie. db.truncateAllTables() } def cleanupSpec() { // cleanup provider } @Unroll def "Provider Pact - With Consumer #consumer"() { expect: verifyConsumerPact(consumer).empty where: consumer << serviceProvider.consumers } private Map verifyConsumerPact(ConsumerInfo consumer) { Map failures = [:] verifier.initialiseReporters(serviceProvider) verifier.runVerificationForConsumer(failures, serviceProvider, consumer) if (!failures.empty) { verifier.displayFailures(failures) } failures } } ```

Last Version: 3.5.24

Release Date:

WSO2 Carbon - UMA 2.0 Protection API Feature

org.wso2.carbon.identity.oauth.uma : org.wso2.carbon.identity.oauth.uma.server.feature

This feature contains the core bundles required for Back-end UMA 2.0 Protection API functionality

Last Version: 1.3.7

Release Date:

WSO2 Carbon - Identity Common

org.wso2.carbon.identity.commons : org.wso2.carbon.identity.commons

This is a Carbon bundle that represents the Identity Common module.

Last Version: 0.1.35

Release Date:

Last Version: 0.5.0

Release Date:

52°North SOS - eReporting Prefixed identifier convert module

org.n52.sensorweb.sos : ereporting-identifier

52°North SOS - Module to support eReporting prefixed identifiers in requests and responses

Last Version: 5.0.0-alpha.10

Release Date:

52°North SOS - Prefixed identifier convert module

org.n52.sensorweb.sos : prefixed-identifier

52°North SOS - Module to support prefixed identifiers in requests and responses

Last Version: 5.0.0-alpha.10

Release Date:

52°North SOS - Flexible identifier convert module

org.n52.sensorweb.sos : flexible-identifier

52°North SOS - Module to support flexible identifiers in requests and responses

Last Version: 5.0.0-alpha.10

Release Date:

org-netbeans-modules-web-common

org.netbeans.modules : org-netbeans-modules-web-common

Apache NetBeans is an integrated development environment, tooling platform, and application framework.

Last Version: RELEASE140

Release Date:

nd4j-native

org.nd4j : nd4j-native

Deeplearning4j Monorepo

Last Version: 1.0.0-M2

Release Date:

Last Version: 2.6.1

Release Date:

WSO2 Carbon Identity Management - OSGi Bundle

org.wso2.carbon.identity.mgt : org.wso2.carbon.identity.mgt

WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.

Last Version: 0.1.41

Release Date: