airavata

A general purpose Distributed Systems Framework

https://github.com/apache/airavata

Science Score: 54.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    32 of 107 committers (29.9%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.6%) to scientific vocabulary

Keywords

airavata bigdata cloudnative gateways java microservices sciencegateways workflow workfloworchestrator

Keywords from Contributors

distributed embedded interactive systemds ecosystem-modeling mesh interpretability profiles sequences generic
Last synced: 4 months ago · JSON representation ·

Repository

A general purpose Distributed Systems Framework

Basic Info
Statistics
  • Stars: 127
  • Watchers: 24
  • Forks: 136
  • Open Issues: 9
  • Releases: 0
Topics
airavata bigdata cloudnative gateways java microservices sciencegateways workflow workfloworchestrator
Created almost 12 years ago · Last pushed 4 months ago
Metadata Files
Readme License Citation

README.md

Apache Airavata

image

Build Status License Contributors

Apache Airavata is a software framework for executing and managing computational jobs on distributed computing resources including local clusters, supercomputers, national grids, academic and commercial clouds. Airavata builds on general concepts of service oriented computing, distributed messaging, and workflow composition and orchestration. Airavata bundles a server package with an API, client software development Kits and a general purpose reference UI implementation.

Key Features

  • 🔧 Service-oriented architecture with distributed messaging
  • 🔄 Fully-managed task lifecycle (environment setup, data staging, execution, and output retrieval)
  • ☁️ Multi-cloud and hybrid cloud support
  • 🖥️ Comprehensive API and SDK ecosystem
  • 🌐 Reference UI Implementations

Using Airavata

If you’re a researcher, Airavata offers several ways to streamline your workflows:

  1. Submit Batch Jobs via the Airavata Application Portal -- Example
  2. Launch Interactive Experiments through the Airavata Research Portal -- Example
  3. Explore and run published experiments from the Airavata Research Catalog -- Example
  4. Run interactive computational jobs directly from your IDE using Airavata Python SDK -- PyPI

🧱 The Airavata Ecosystem

Apache Airavata is composed of modular components spanning core services, data management, user interfaces, and developer tooling.

🔧 Core Services

📦 Data & Metadata Services

📚 Documentation & Branding

🧪 Experimental & Research

🔄 How Airavata Works

Airavata is composed as 4 top-level services that work together to facilitate the full lifecycle of computational jobs.

image

1. Airavata API Server (apache-airavata-api-server)

The Airavata API Server bootstraps the services needed to run/monitor computational jobs, access/share results of computational runs, and manage fine-grained access to computational resources.

Orchestrator

Class Name: org.apache.airavata.server.ServerMain Command: bin/orchestrator.sh

The Orchestrator spins up 7 servers (of type org.apache.airavata.common.utils.IServer) for external clients to run computational jobs from.

  • API - public-facing API consumed by Airavata SDKs and dashboards. It bridges external clients and internal services, and is served over Thrift. (org.apache.airavata.api.server.AiravataAPIServer)
  • DB Event Manager - Monitors task execution events (launch, transitions, completion/failure) and syncs them to the Airavata DB via pub/sub hooks. (org.apache.airavata.db.event.manager.DBEventManagerRunner)
  • Registry - Manages metadata and definitions for executable tasks and applications. (org.apache.airavata.registry.api.service.RegistryAPIServer)
  • Credential Store - Manages secure storage and retrieval of credentials for accessing registered compute resources. (org.apache.airavata.credential.store.server.CredentialStoreServer)
  • Sharing Registry - Handles sharing and permissioning of Airavata resources between users and groups. (org.apache.airavata.sharing.registry.server.SharingRegistryServer)
  • Orchestrator - Constructs workflow DAGs, assigns unique IDs to tasks, and hands them off to the workflow manager. (org.apache.airavata.orchestrator.server.OrchestratorServer)
  • Profile - Manages users, tenants, compute resources, and group profiles. (org.apache.airavata.service.profile.server.ProfileServiceServer)

Controller

Class Name: org.apache.airavata.helix.impl.controller.HelixController Command: bin/controller.sh

The Controller manages the step-by-step transition of task state on helix-side. It uses Apache Helix to track step start, completion, and failure paths, ensuring the next step starts upon successful completion or retrying the current step on failure.

image

Participant

Class Name: org.apache.airavata.helix.impl.participant.GlobalParticipant Command: bin/participant.sh

The participant synchronizes the helix-side state transition of a task with its concrete execution at airavata-side. The currently registered steps are: EnvSetupTask, InputDataStagingTask, OutputDataStagingTask, JobVerificationTask, CompletingTask, ForkJobSubmissionTask, DefaultJobSubmissionTask, LocalJobSubmissionTask, ArchiveTask, WorkflowCancellationTask, RemoteJobCancellationTask, CancelCompletingTask, DataParsingTask, ParsingTriggeringTask, and MockTask.

Email Monitor

Class Name: org.apache.airavata.monitor.email.EmailBasedMonitor Command: bin/email-monitor.sh

The email monitor periodically checks an email inbox for job status updates sent via email. If it reads a new email with a job status update, it relays that state-change to the internal MQ (KafkaProducer).

Realtime Monitor

Class Name: org.apache.airavata.monitor.realtime.RealtimeMonitor Command: bin/realtime-monitor.sh

The realtime monitor listens to incoming state-change messages on the internal MQ (KafkaConsumer), and relays that state-change to the internal MQ (KafkaProducer). When a task is completed at the compute resource, the realtime monitor is notified of this.

Pre Workflow Manager

Class Name: org.apache.airavata.helix.impl.workflow.PreWorkflowManager Command: bin/pre-wm.sh

The pre-workflow manager listens on the internal MQ (KafkaConsumer) to inbound tasks at pre-execution phase. When a task DAG is received, it handles the environment setup and data staging phases of the DAG in a robust manner, which includes fault-handling. All these happen BEFORE the task DAG is submitted to the controller, and subsequently to the participant.

Post Workflow Manager

Class Name: org.apache.airavata.helix.impl.workflow.PostWorkflowManager Command: bin/post-wm.sh

The post-workflow listens on the internal MQ (KafkaConsumer) to inbound tasks at post-execution phase. Once a task is received, it handles the cleanup and output fetching phases of the task DAG in a robust manner, which includes fault-handling. Once the main task completes executing, this is announced to the realtime monitor, upon which the post-workflow phase is triggered. Once triggered, it submits this state change to the controller.

image

2. Airavata File Server (apache-airavata-file-server)

Class Name: org.apache.airavata.file.server.FileServerApplication Command: `bin/

The Airavata File Server is a lightweight SFTP wrapper running on storage nodes integrated with Airavata. It lets users securely access storage via SFTP, using Airavata authentication tokens as ephemeral passwords.

3. Airavata Agent Service (apache-airavata-agent-service) [NEW]

Class Name: org.apache.airavata.agent.connection.service.AgentServiceApplication

The Airavata Agent Service is the backend for launching interactive jobs using Airavata. It provide constructs to launch a custom "Agent" on a compute resource, that connects back to the Agent Service through a bi-directional gRPC channel. The Airavata Python SDK primarily utilizes the Agent Service (gRPC) and the Airavata API (Thrift) to submit and execute interactive jobs, spawn subprocesses, and create network tunnels to subprocesses, even if they are behind NAT.

4. Airavata Research Service (apache-airavata-research-service) [NEW]

Class Name: org.apache.airavata.research.service.ResearchServiceApplication

The Airavata Research Service is the backend for the research catalog in Airavata. It provides the API to add, list, modify, and publish notebooks, repositories, datasets, and computational models in cybershuttle, and launch interactive remote sessions to utilize them in a research setting.

🏗️ Getting Started

Option 1 - Build from Source

Before setting up Apache Airavata, ensure that you have:

| Requirement | Version | Check Using | |-------------|---------|-------| | Java SDK | 17+ | java --version | | Apache Maven | 3.8+ | mvn -v | | Git | Latest | git -v |

First, clone the project repository from GitHub. bash git clone https://github.com/apache/airavata.git cd airavata

Next, build the project using Maven. ```bash

with tests (slower, but safer)

mvn clean install

OR without tests (faster)

mvn clean install -DskipTests ```

Once the project is built, four tar.gz bundles will be generated in the ./distributions folder. ```bash ├── apache-airavata-agent-service-0.21-SNAPSHOT.tar.gz ├── apache-airavata-api-server-0.21-SNAPSHOT.tar.gz ├── apache-airavata-file-server-0.21-SNAPSHOT.tar.gz └── apache-airavata-research-service-0.21-SNAPSHOT.tar.gz

1 directory, 4 files ```

Next, copy the deployment scripts and configurations into the ./distributions folder.

```bash cp -r dev-tools/deployment-scripts/ distribution cp -r vault/ distribution/vault

tree ./distribution distribution ├── apache-airavata-agent-service-0.21-SNAPSHOT.tar.gz ├── apache-airavata-api-server-0.21-SNAPSHOT.tar.gz ├── apache-airavata-file-server-0.21-SNAPSHOT.tar.gz ├── apache-airavata-research-service-0.21-SNAPSHOT.tar.gz ├── distributionbackup.sh ├── distributionupdate.sh ├── servicesdown.sh ├── servicesup.sh └── vault ├── airavata-server.properties ├── airavata.sym.p12 ├── application-agent-service.yml ├── application-research-service.yml ├── email-config.yml └── log4j2.xml

2 directories, 16 files ```

What's in the vault?

  • airavata.sym.p12 - contains the symmetric key used to secure stored credentials.
  • airavata-server.properties - config file for the airavata api server.
  • application-agent-service.yml - config file for the airavata agent service.
  • application-file-server.yml - config file for the airavata file server.
  • application-research-service.yml - config file for the airavata research service.
  • application-restproxy.properties - config file for the airavata rest proxy.
  • email-config.yml - contains the email addresses observed by the email monitor.
  • log4j2.xml - contains the Log4j configuration for all airavata services.

Next, start the services using the deployment scripts.

bash cd distribution ./distribution_update.sh ./services_up.sh

Voila, you are now running Airavata! You can now tail the server logs using multitail (all logs) or tail (specific logs).

```bash multitail apache-airavata-/logs/.log

```

🐳 Option 2 - Run with Docker (Experimental)

⚠️ Note: Docker deployment is experimental and not recommended for production use.

Before setting up Apache Airavata, ensure that you have:

| Requirement | Version | Check Using | |-------------|---------|-------| | Java SDK | 17+ | java --version | | Apache Maven | 3.8+ | mvn -v | | Git | Latest | git -v | | Docker Engine | 20.10+ | docker -v | | Docker Compose | 2.0+ | docker compose version |

In your /etc/hosts, point airavata.host to 127.0.0.1: 127.0.0.1 airavata.host

First, clone the project repository from GitHub. bash git clone https://github.com/apache/airavata.git cd airavata

Next, build the project distribution using Maven.

```bash

with tests (slower, but safer)

mvn clean install

OR without tests (faster)

mvn clean install -DskipTests ```

Next, build the containers and start them through compose.

```bash

build the containers

mvn docker:build -pl modules/distribution

start containers via compose

docker-compose \ -f modules/distribution/src/main/docker/docker-compose.yml \ up -d

check whether services are running

docker-compose ps ```

Service Endpoints: - API Server: airavata.host:8960 - Profile Service: airavata.host:8962 - Keycloak: airavata.host:8443

Stop Services: bash docker-compose \ -f modules/ide-integration/src/main/containers/docker-compose.yml \ -f modules/distribution/src/main/docker/docker-compose.yml \ down

🤝 Contributing

We welcome contributions from the community! Here's how you can help:

  1. 🍴 Fork the repository
  2. 🌿 Create a feature branch
  3. ✨ Make your changes
  4. 🧪 Add tests if applicable
  5. 📝 Submit a pull request

Learn More: - Contributing Guidelines - Code of Conduct - Developer Resources

Setting up your IDE

The easiest way to setup a development environment is to follow the instructions in the ide-integration README.Those instructions will guide you on setting up a development environment with IntelliJ IDEA.

Additional Tools

  • org.apache.airavata.sharing.registry.migrator.airavata.AiravataDataMigrator
  • modules/deployment-scripts
  • modules/load-client

💬 Community & Support

Get Help: - 📧 User Mailing List: users@airavata.apache.org - 👨‍💻 Developer Mailing List: dev@airavata.apache.org - 🔗 All Mailing Lists: airavata.apache.org/mailing-list

📄 License

``` Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership.

The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ```

See the LICENSE file for complete license details.


Made with ❤️ by the Apache Airavata Community

Owner

  • Name: The Apache Software Foundation
  • Login: apache
  • Kind: organization

Citation (CITATION.cff)

# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: Apache Airavata
message: >-
  If you use this software, please cite it using the
  metadata from this file.
type: software
authors:
  - given-names: Airavata
    family-names: Apache
    email: dev@airavata.apache.org
repository-code: 'https://github.com/apache/airavata'
url: 'https://airavata.apache.org/'
license: Apache-2.0
preferred-citation:
  type: proceedings
  authors:
  - family-names: "Marru"
    given-names: "Suresh"
  - family-names: "Gunathilake"
    given-names: "Lahiru"
  - family-names: "Herath"
    given-names: "Chathura"
  - family-names: "Tangchaisin"
    given-names: "Patanachai"
  - family-names: "Pierce"
    given-names: "Marlon"
  - family-names: "Mattmann"
    given-names: "Chris"
  - family-names: "Singh"
    given-names: "Raminder"
  - family-names: "Gunarathne"
    given-names: "Thilina"
  - family-names: "Chinthaka"
    given-names: "Eran"
  - family-names: "Gardler"
    given-names: "Ross"
  - family-names: "Slominski"
    given-names: "Aleksander"
  - family-names: "Douma"
    given-names: "Ate"
  - family-names: "Perera"
    given-names: "Srinath"
  - family-names: "Weerawarana"
    given-names: "Sanjiva"
  doi: "10.1145/2110486.2110490"
  journal: "Proceedings of the 2011 ACM workshop on Gateway computing environments"
  month: 11
  start: 1 # 21
  end: 10 # 28
  title: "Apache airavata: a framework for distributed applications and computational workflows"
  issue: 1
  volume: 1
  year: 2011

GitHub Events

Total
  • Watch event: 10
  • Delete event: 63
  • Issue comment event: 86
  • Push event: 347
  • Pull request review event: 24
  • Pull request review comment event: 28
  • Pull request event: 208
  • Fork event: 27
  • Create event: 33
Last Year
  • Watch event: 10
  • Delete event: 63
  • Issue comment event: 86
  • Push event: 347
  • Pull request review event: 24
  • Pull request review comment event: 28
  • Pull request event: 208
  • Fork event: 27
  • Create event: 33

Committers

Last synced: 6 months ago

All Time
  • Total Commits: 9,554
  • Total Committers: 107
  • Avg Commits per committer: 89.29
  • Development Distribution Score (DDS): 0.871
Past Year
  • Commits: 454
  • Committers: 17
  • Avg Commits per committer: 26.706
  • Development Distribution Score (DDS): 0.661
Top Committers
Name Email Commits
Lahiru Gunathilake l****u@a****g 1,230
Marcus Christie m****e@a****g 1,223
Eroma Abeysinghe e****e@g****m 711
Shameera Rathnayaka s****o@g****m 620
Suresh Marru s****u@a****g 619
scnakandala s****a@g****m 557
Dimuthu Wannipurage d****2@g****m 552
samindaw s****w@u****n 451
Chathuri Wimalasena c****i@a****g 353
Chathuri Wimalasena k****i@g****m 340
Heshan Theekshana Suriyaarachchi h****n@a****g 315
Raminderjeet Singh r****r@a****g 289
chathuri c****i@u****n 211
Saminda Wijeratne s****w@g****m 196
ganning127 g****u@g****m 184
Patanachai Tangchaisin p****i@a****g 172
Isuru Ranawaka i****h@g****m 163
yasith y****j@i****m 154
Gourav Shenoy s****0@g****m 110
Chathura Herath c****a@a****g 104
lahiruj l****e@g****m 91
Sachin Kariyattin s****5@g****m 85
Anuj Bhandar b****j@g****m 77
amilaj a****j@u****n 74
Ajinkya Dhamnaskar a****s@u****u 62
Sneha Tilak t****s@S****l 56
Lahiru Gunathilake g****u@g****m 44
tilaks26 s****6@g****m 42
dependabot[bot] 4****] 41
dimuthu.upeksha2@gmail.com D****u@1****4 33
and 77 more...

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 2
  • Total pull requests: 422
  • Average time to close issues: about 1 year
  • Average time to close pull requests: about 1 year
  • Total issue authors: 2
  • Total pull request authors: 41
  • Average comments per issue: 0.5
  • Average comments per pull request: 0.61
  • Merged pull requests: 294
  • Bot issues: 1
  • Bot pull requests: 104
Past Year
  • Issues: 1
  • Pull requests: 210
  • Average time to close issues: 10 days
  • Average time to close pull requests: 8 days
  • Issue authors: 1
  • Pull request authors: 13
  • Average comments per issue: 0.0
  • Average comments per pull request: 0.48
  • Merged pull requests: 154
  • Bot issues: 0
  • Bot pull requests: 47
Top Authors
Issue Authors
  • yasithdev (1)
  • dependabot[bot] (1)
Pull Request Authors
  • dependabot[bot] (104)
  • isururanawaka (87)
  • ganning127 (69)
  • yasithdev (44)
  • lahirujayathilake (31)
  • Bcoderx6 (8)
  • pjfanning (6)
  • DImuthuUpe (6)
  • katamyra (6)
  • hiteshkumardasika (5)
  • satyamsah (5)
  • javad-aslanov (4)
  • jeffreypeter (4)
  • shubhamkr1 (3)
  • machristie (2)
Top Labels
Issue Labels
dependencies (1) python (1)
Pull Request Labels
dependencies (107) java (74) javascript (18) python (16) enhancement (16) go (8) docs (4) devops (3) feature (2) bug (2) php (2)

Packages

  • Total packages: 72
  • Total downloads:
    • pypi 131 last-month
    • rubygems 3,688 total
  • Total dependent packages: 299
    (may contain duplicates)
  • Total dependent repositories: 216
    (may contain duplicates)
  • Total versions: 275
  • Total maintainers: 2
repo1.maven.org: org.apache.airavata:airavata-data-models

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 41
  • Dependent Repositories: 13
Rankings
Dependent packages count: 1.6%
Dependent repos count: 6.8%
Average: 13.3%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-model-utils

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 18
  • Dependent Repositories: 12
Rankings
Dependent packages count: 3.5%
Dependent repos count: 7.1%
Average: 13.8%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-gfac-core

The core GFAC functionality independent from any webservice implementation.

  • Versions: 15
  • Dependent Packages: 29
  • Dependent Repositories: 9
Rankings
Dependent packages count: 2.3%
Dependent repos count: 8.2%
Average: 14.0%
Forks count: 17.5%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-credential-store

Module to manage credentials

  • Versions: 11
  • Dependent Packages: 19
  • Dependent Repositories: 11
Rankings
Dependent packages count: 3.4%
Dependent repos count: 7.4%
Average: 14.0%
Forks count: 17.5%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-commons

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 24
  • Dependent Repositories: 8
Rankings
Dependent packages count: 2.7%
Dependent repos count: 8.7%
Average: 14.0%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-server-configuration

Airavata Server Configuration

  • Versions: 6
  • Dependent Packages: 28
  • Dependent Repositories: 8
Rankings
Dependent packages count: 2.3%
Dependent repos count: 8.7%
Average: 14.1%
Forks count: 17.5%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-client-configuration

Airavata Client Configuration

  • Versions: 6
  • Dependent Packages: 21
  • Dependent Repositories: 9
Rankings
Dependent packages count: 3.1%
Dependent repos count: 8.2%
Average: 14.2%
Forks count: 17.5%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-registry-cpi

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 13
  • Dependent Repositories: 8
Rankings
Dependent packages count: 4.8%
Dependent repos count: 8.7%
Average: 14.6%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-messaging-core

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 4
  • Dependent Packages: 11
  • Dependent Repositories: 8
Rankings
Dependent packages count: 5.6%
Dependent repos count: 8.7%
Average: 14.8%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-api-stubs

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 10
  • Dependent Repositories: 9
Rankings
Dependent packages count: 6.1%
Dependent repos count: 8.2%
Average: 14.8%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-registry-core

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 8
  • Dependent Repositories: 7
Rankings
Dependent packages count: 7.5%
Dependent repos count: 9.3%
Average: 15.4%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-security

Module for managing security features in Airavata

  • Versions: 11
  • Dependent Packages: 6
  • Dependent Repositories: 8
Rankings
Dependent repos count: 8.7%
Dependent packages count: 9.7%
Average: 15.9%
Forks count: 17.5%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-orchestrator-service

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 7
  • Dependent Repositories: 5
Rankings
Dependent packages count: 8.4%
Dependent repos count: 10.9%
Average: 16.0%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:registry-api-stubs

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 6
  • Dependent Repositories: 6
Rankings
Dependent packages count: 9.7%
Dependent repos count: 10.0%
Average: 16.1%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-orchestrator-core

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 5
  • Dependent Repositories: 5
Rankings
Dependent repos count: 10.9%
Dependent packages count: 11.5%
Average: 16.8%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-standalone-server

Module Containing Classes which start the Airavata Standalone Server

  • Versions: 6
  • Dependent Packages: 5
  • Dependent Repositories: 5
Rankings
Dependent repos count: 10.9%
Dependent packages count: 11.5%
Average: 16.9%
Forks count: 17.5%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-service-stubs

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 5
  • Dependent Repositories: 4
Rankings
Dependent packages count: 11.5%
Dependent repos count: 12.1%
Average: 17.1%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-credential-store-stubs

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 3
  • Dependent Packages: 4
  • Dependent Repositories: 6
Rankings
Dependent repos count: 10.0%
Dependent packages count: 13.9%
Average: 17.2%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-api-server

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 4
  • Dependent Repositories: 5
Rankings
Dependent repos count: 10.9%
Dependent packages count: 13.9%
Average: 17.4%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-orchestrator-client

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 4
  • Dependent Repositories: 5
Rankings
Dependent repos count: 10.9%
Dependent packages count: 13.9%
Average: 17.4%
Forks count: 17.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-sharing-registry-server

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Dependent packages count: 17.6%
Forks count: 17.6%
Average: 18.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-sharing-registry-stubs

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Dependent packages count: 17.6%
Forks count: 17.6%
Average: 18.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-gfac-client

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 3
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Dependent packages count: 17.6%
Forks count: 17.6%
Average: 18.6%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-gfac-service

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 4
  • Dependent Repositories: 2
Rankings
Dependent packages count: 13.9%
Dependent repos count: 16.1%
Forks count: 17.6%
Average: 18.7%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-client-samples

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 2
  • Dependent Repositories: 5
Rankings
Dependent repos count: 10.9%
Forks count: 17.6%
Average: 19.7%
Dependent packages count: 23.2%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:services-security

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 20.0%
Dependent packages count: 23.2%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-service-commons

Module to expose a profile-service-commons as a thrift service

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.5%
Average: 20.2%
Dependent packages count: 23.2%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:aurora-client

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 1
Rankings
Forks count: 17.6%
Dependent repos count: 20.8%
Average: 22.2%
Dependent packages count: 23.2%
Stargazers count: 27.2%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-gfac-impl

This is the extension of GFAC Local.

  • Versions: 2
  • Dependent Packages: 2
  • Dependent Repositories: 1
Rankings
Forks count: 17.5%
Dependent repos count: 20.8%
Average: 22.3%
Dependent packages count: 23.2%
Stargazers count: 27.8%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:iam-admin-services-core

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 22.5%
Stargazers count: 27.2%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-user-core

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 22.5%
Stargazers count: 27.2%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:cluster-monitoring

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 22.5%
Stargazers count: 27.2%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:db-event-manager

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 22.5%
Stargazers count: 27.2%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:registry-api-service

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 22.5%
Stargazers count: 27.2%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-tenant-core

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 22.5%
Stargazers count: 27.2%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:compute-account-provisioning

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.6%
Average: 22.5%
Stargazers count: 27.2%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-service-server

Module to expose a profile service as a thrift service

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 4
Rankings
Dependent repos count: 12.1%
Forks count: 17.5%
Average: 22.6%
Stargazers count: 27.8%
Dependent packages count: 33.0%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:credential-store

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 3
Rankings
Dependent repos count: 13.8%
Forks count: 17.6%
Average: 27.2%
Stargazers count: 27.2%
Dependent packages count: 50.1%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-sharing-data-migrator

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-service-client-sdks

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-monitoring

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-service-client-samples

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-configuration

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:apache-airavata-distribution

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:workflow

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-sharing-registry-distribution

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:jpa-gen

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:user-profile-migration

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:apache-airavata-client-php-sdk

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-registry-tools

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-gfac

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-workflow-core

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:registry-server

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-services

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-api

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-gfac-application-specific-handlers

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:registry

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:registry-tool

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:cloud-provisioning

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:orchestrator

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-sharing-registry

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.1%
Stargazers count: 19.9%
Average: 28.2%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-messaging-client

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.2%
Stargazers count: 20.1%
Average: 28.3%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-client-sdks

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.2%
Stargazers count: 20.1%
Average: 28.3%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:apache-airavata-client-python-sdk

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.2%
Stargazers count: 20.1%
Average: 28.3%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:apache-airavata-client-cpp-sdk

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.2%
Stargazers count: 20.1%
Average: 28.3%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata-cloud

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.2%
Stargazers count: 20.1%
Average: 28.3%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:profile-service

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.2%
Stargazers count: 20.1%
Average: 28.3%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:airavata

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 12.2%
Stargazers count: 20.1%
Average: 28.3%
Dependent repos count: 32.0%
Dependent packages count: 48.9%
Last synced: 4 months ago
repo1.maven.org: org.apache.airavata:messaging

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Forks count: 17.6%
Dependent repos count: 20.8%
Stargazers count: 27.2%
Average: 28.9%
Dependent packages count: 50.1%
Last synced: 4 months ago
rubygems.org: airavata

The Apache Airavata Ruby SDK for third party clients to integrate with Airavata middleware

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,688 Total
Rankings
Forks count: 2.1%
Stargazers count: 5.4%
Dependent packages count: 15.7%
Average: 31.4%
Dependent repos count: 46.8%
Downloads: 86.9%
Maintainers (1)
Last synced: 4 months ago
pypi.org: airavata-jupyter-magic

Jupyter magics for running notebook cells on remote HPC resources. Powered by Apache Airavata.

  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 113 Last month
Rankings
Dependent packages count: 10.6%
Average: 35.2%
Dependent repos count: 59.8%
Maintainers (1)
Last synced: 4 months ago
pypi.org: cybershuttle-sdk

Python SDK for Apache Airavata Cybershuttle

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 18 Last month
Rankings
Dependent packages count: 7.3%
Average: 37.9%
Dependent repos count: 68.6%
Maintainers (1)
Last synced: 4 months ago

Dependencies

modules/distribution/src/main/docker/api-server/Dockerfile docker
  • adoptopenjdk/openjdk11 latest build
modules/distribution/src/main/docker/controller/Dockerfile docker
  • adoptopenjdk/openjdk11 latest build
modules/distribution/src/main/docker/docker-compose.yml docker
  • airavata/api-server latest
  • airavata/controller latest
  • airavata/email-monitor latest
  • airavata/participant latest
  • airavata/post-wm latest
  • airavata/pre-wm latest
  • wurstmeister/kafka latest
modules/distribution/src/main/docker/email-monitor/Dockerfile docker
  • adoptopenjdk/openjdk11 latest build
modules/distribution/src/main/docker/participant/Dockerfile docker
  • adoptopenjdk/openjdk11 latest build
modules/distribution/src/main/docker/post-wm/Dockerfile docker
  • adoptopenjdk/openjdk11 latest build
modules/distribution/src/main/docker/pre-wm/Dockerfile docker
  • adoptopenjdk/openjdk11 latest build
modules/distribution/src/main/resources/dockerfiles/controller/Dockerfile docker
  • adoptopenjdk/openjdk11 latest build
modules/ide-integration/src/main/containers/docker-compose.yml docker
  • dimuthuupe/sshd 1.0
  • jboss/keycloak 2.5.4.Final
  • mariadb 10.4.13
  • rabbitmq latest
  • wurstmeister/kafka latest
  • zookeeper latest
modules/ide-integration/src/main/containers/gateway-storage/Dockerfile docker
  • ubuntu 16.04 build
modules/ide-integration/src/main/containers/pga/Dockerfile docker
  • nimmis/apache-php5 latest build
modules/ide-integration/src/main/containers/pga/docker-compose.yml docker
  • dimuthuupe/pga 1.0
modules/registry/registry-core/src/main/resources/migrations-util/mysql/docker-compose.yml docker
  • mariadb 10.4.13
airavata-api/airavata-api-server/pom.xml maven
  • aopalliance:aopalliance 1.0
  • com.google.inject:guice 4.0
  • org.apache.airavata:airavata-api-stubs ${project.version}
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-credential-store-stubs ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-messaging-core ${project.version}
  • org.apache.airavata:airavata-model-utils ${project.version}
  • org.apache.airavata:airavata-orchestrator-client ${project.version}
  • org.apache.airavata:airavata-security ${project.version}
  • org.apache.airavata:airavata-sharing-registry-stubs ${project.version}
  • org.apache.airavata:compute-account-provisioning ${project.version}
  • org.apache.airavata:profile-service-stubs ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.apache.airavata:services-security ${project.version}
  • org.apache.curator:curator-framework ${curator.version}
  • org.apache.httpcomponents:httpclient 4.4
  • org.apache.oltu.oauth2:org.apache.oltu.oauth2.client 1.0.0
  • org.apache.thrift:libthrift ${thrift.version}
  • org.codehaus.jackson:jackson-mapper-asl 1.9.13
  • org.jmockit:jmockit ${jmockit.version} test
airavata-api/airavata-api-stubs/pom.xml maven
  • org.apache.airavata:airavata-base-api ${project.version}
  • org.apache.airavata:airavata-credential-store-stubs ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.thrift:libthrift ${thrift.version}
airavata-api/airavata-base-api/pom.xml maven
  • javax.annotation:javax.annotation-api ${javax.annotation.version}
  • org.apache.thrift:libthrift ${thrift.version}
airavata-api/airavata-client-sdks/java-client-samples/pom.xml maven
  • com.googlecode.json-simple:json-simple 1.1
  • org.apache.airavata:airavata-api-stubs ${project.version}
  • org.apache.airavata:airavata-client-configuration ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-model-utils ${project.version}
  • org.apache.airavata:airavata-security ${project.version}
  • org.apache.httpcomponents:httpclient 4.4
  • org.apache.httpcomponents:httpcore 4.4
  • org.apache.thrift:libthrift ${thrift.version}
airavata-api/airavata-data-models/pom.xml maven
  • javax.annotation:javax.annotation-api ${javax.annotation.version}
  • org.apache.thrift:libthrift ${thrift.version}
airavata-api/airavata-model-utils/pom.xml maven
  • org.apache.airavata:airavata-data-models ${project.version}
  • junit:junit ${junit.version} test
  • org.jmockit:jmockit ${jmockit.version} test
airavata-services/pom.xml maven
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-data-models 0.21-SNAPSHOT
  • org.apache.airavata:airavata-server-configuration 0.21-SNAPSHOT
  • org.apache.thrift:libthrift ${thrift.version}
  • junit:junit 4.12 test
airavata-services/profile-service/iam-admin-services-core/pom.xml maven
  • com.fasterxml.jackson.core:jackson-databind ${jackson.databind.version}
  • commons-httpclient:commons-httpclient 3.1
  • javax.ws.rs:javax.ws.rs-api 2.0.1
  • org.apache.airavata:profile-service-stubs ${project.version}
  • org.apache.httpcomponents:httpclient 4.5.2
  • org.jboss.resteasy:resteasy-client 3.0.14.Final
  • org.jboss.resteasy:resteasy-jackson2-provider 3.0.14.Final
  • org.keycloak:keycloak-admin-client 2.5.5.Final
airavata-services/profile-service/profile-service-client-sdks/java-client-samples/pom.xml maven
  • org.apache.airavata:profile-service-stubs ${project.version}
airavata-services/profile-service/profile-service-commons/pom.xml maven
  • mysql:mysql-connector-java 5.1.34
  • net.sf.dozer:dozer ${dozer.version}
  • org.apache.derby:derby 10.11.1.1
  • org.apache.derby:derbyclient 10.11.1.1
  • org.apache.derby:derbynet 10.11.1.1
  • org.apache.derby:derbytools 10.11.1.1
  • org.apache.openjpa:openjpa ${openjpa.version}
airavata-services/profile-service/profile-service-server/pom.xml maven
  • org.apache.airavata:airavata-messaging-core ${project.version}
  • org.apache.airavata:airavata-sharing-registry-stubs ${project.version}
  • org.apache.airavata:iam-admin-services-core ${project.version}
  • org.apache.airavata:profile-service-stubs ${project.version}
  • org.apache.airavata:profile-tenant-core ${project.version}
  • org.apache.airavata:profile-user-core ${project.version}
  • org.apache.airavata:services-security ${project.version}
airavata-services/profile-service/profile-service-stubs/pom.xml maven
  • org.apache.airavata:airavata-base-api ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
airavata-services/profile-service/profile-tenant-core/pom.xml maven
  • org.apache.airavata:profile-service-commons 0.21-SNAPSHOT
airavata-services/profile-service/profile-user-core/pom.xml maven
  • org.apache.airavata:profile-service-commons 0.21-SNAPSHOT
airavata-services/services-security/pom.xml maven
  • aopalliance:aopalliance 1.0
  • com.google.inject:guice 4.0
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-credential-store-stubs ${project.version}
  • org.apache.airavata:airavata-security ${project.version}
  • org.apache.airavata:airavata-sharing-registry-stubs ${project.version}
  • org.apache.airavata:platform-monitoring ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.apache.httpcomponents:httpclient 4.4
  • org.apache.oltu.oauth2:org.apache.oltu.oauth2.client 1.0.0
  • org.codehaus.jackson:jackson-mapper-asl 1.9.13
  • org.json:json 20131018
  • org.jmockit:jmockit ${jmockit.version} test
modules/airavata-helix/agent-api/pom.xml maven
  • org.apache.airavata:airavata-credential-store-stubs ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.codehaus.jackson:jackson-mapper-asl 1.8.5
modules/airavata-helix/agent-impl/pom.xml maven
  • org.apache.airavata:agent-api ${project.version}
modules/airavata-helix/agent-impl/ssh-agent/pom.xml maven
  • com.jcraft:jsch 0.1.53
  • commons-io:commons-io 1.4
  • org.apache.airavata:agent-api ${project.version}
modules/airavata-helix/agent-impl/sshj-agent/pom.xml maven
  • com.hierynomus:sshj 0.23.0
  • org.apache.airavata:ssh-agent ${project.version}
modules/airavata-helix/helix-spectator/pom.xml maven
  • com.github.docker-java:docker-java 3.0.14
  • org.apache.airavata:airavata-messaging-core ${project.version}
  • org.apache.airavata:airavata-registry-core ${project.version}
  • org.apache.airavata:job-monitor-api ${project.version}
  • org.apache.airavata:profile-service-stubs ${project.version}
  • org.apache.airavata:registry-api-service ${project.version}
  • org.apache.airavata:services-security ${project.version}
  • org.apache.airavata:task-core ${project.version}
  • org.apache.airavata:workflow-impl ${project.version}
  • org.apache.kafka:kafka-clients ${kafka-clients.version}
  • org.codehaus.groovy:groovy-templates 2.4.7
modules/airavata-helix/task-api/pom.xml maven
  • org.apache.airavata:agent-api ${project.version}
  • org.apache.helix:helix-core ${helix.version}
modules/airavata-helix/task-core/pom.xml maven
  • org.apache.airavata:agent-api ${project.version}
  • org.apache.airavata:platform-monitoring ${project.version}
  • org.apache.airavata:sshj-agent ${project.version}
  • org.apache.airavata:task-api ${project.version}
modules/airavata-helix/workflow-impl/pom.xml maven
  • org.apache.airavata:task-api ${project.version}
  • org.apache.airavata:task-core ${project.version}
modules/cluster-monitoring/pom.xml maven
  • com.google.code.gson:gson 2.3.1
  • com.jcraft:jsch 0.1.50
  • org.apache.airavata:airavata-credential-store ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-server-configuration ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.quartz-scheduler:quartz 2.2.1
  • org.quartz-scheduler:quartz-jobs 2.2.1
  • org.slf4j:jcl-over-slf4j
  • junit:junit test
modules/commons/pom.xml maven
  • com.google.code.gson:gson ${google.gson.version}
  • com.google.guava:guava
  • commons-cli:commons-cli 1.2
  • commons-dbcp:commons-dbcp 1.4
  • javax.xml.bind:jaxb-api ${jaxb.version}
  • junit:junit ${junit.version}
  • net.sf.dozer:dozer ${dozer.version}
  • org.apache.airavata:airavata-base-api 0.21-SNAPSHOT
  • org.apache.airavata:airavata-model-utils 0.21-SNAPSHOT
  • org.apache.commons:commons-pool2
  • org.apache.curator:curator-framework ${curator.version}
  • org.apache.derby:derby ${derby.version}
  • org.apache.derby:derbyclient ${derby.version}
  • org.apache.derby:derbynet ${derby.version}
  • org.apache.derby:derbytools ${derby.version}
  • org.apache.kafka:kafka-clients ${kafka-clients.version}
  • org.apache.openjpa:openjpa ${openjpa.version}
  • org.apache.thrift:libthrift ${thrift.version}
  • org.apache.tomcat.embed:tomcat-embed-core 7.0.22
  • org.ogce:xpp3 ${xpp3.version}
  • org.ogce:xpp5 ${xpp5.version}
  • org.apache.airavata:airavata-server-configuration test
  • org.jmockit:jmockit ${jmockit.version} test
  • org.slf4j:jcl-over-slf4j test
modules/compute-account-provisioning/pom.xml maven
  • com.google.code.gson:gson 2.3.1
  • com.jcraft:jsch 0.1.50
  • org.apache.airavata:airavata-credential-store ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.apache.directory.api:api-all 1.0.0
  • junit:junit test
modules/credential-store/credential-store-service/pom.xml maven
  • javax.servlet:servlet-api 2.5 provided
  • com.jcraft:jsch 0.1.50
  • commons-dbcp:commons-dbcp 1.4
  • edu.uiuc.ncsa.myproxy:oa4mp-client-api ${oa4mp.version}
  • edu.uiuc.ncsa.myproxy:oa4mp-client-loader-oauth1 ${oa4mp.version}
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-credential-store-stubs ${project.version}
  • org.apache.commons:commons-email 1.3.2
  • org.apache.commons:commons-io 1.3.2
  • org.apache.derby:derbynet ${derby.version}
  • junit:junit 4.7 test
  • org.apache.airavata:airavata-server-configuration ${project.version} test
  • org.apache.derby:derby ${derby.version} test
  • org.apache.derby:derbyclient ${derby.version} test
  • org.apache.derby:derbytools ${derby.version} test
modules/credential-store/credential-store-stubs/pom.xml maven
  • org.apache.airavata:airavata-base-api 0.21-SNAPSHOT
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-server-configuration 0.21-SNAPSHOT
  • org.apache.thrift:libthrift ${thrift.version}
modules/db-event-manager/pom.xml maven
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-messaging-core ${project.version}
modules/distribution/pom.xml maven
  • javax.servlet:javax.servlet-api 3.0.1 provided
  • com.fasterxml.jackson.core:jackson-annotations ${jackson.core.version}
  • com.fasterxml.jackson.core:jackson-core ${jackson.core.version}
  • com.fasterxml.jackson.core:jackson-databind ${jackson.databind.version}
  • com.google.guava:guava
  • com.ibm.icu:icu4j 3.4.4
  • com.jcraft:jsch 0.1.53
  • com.rabbitmq:amqp-client ${amqp.client.version}
  • commons-cli:commons-cli 1.2
  • commons-codec:commons-codec 1.6
  • commons-collections:commons-collections 3.2.2
  • commons-configuration:commons-configuration 1.7
  • commons-io:commons-io ${commons.io.version}
  • commons-lang:commons-lang 2.4
  • net.java.dev.jets3t:jets3t 0.8.0
  • net.sf.jopt-simple:jopt-simple 3.2
  • org.apache.airavata:airavata-api-server 0.21-SNAPSHOT
  • org.apache.airavata:airavata-client-samples 0.21-SNAPSHOT
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-credential-store 0.21-SNAPSHOT
  • org.apache.airavata:airavata-data-models 0.21-SNAPSHOT
  • org.apache.airavata:airavata-messaging-core 0.21-SNAPSHOT
  • org.apache.airavata:airavata-model-utils 0.21-SNAPSHOT
  • org.apache.airavata:airavata-orchestrator-client 0.21-SNAPSHOT
  • org.apache.airavata:airavata-orchestrator-core 0.21-SNAPSHOT
  • org.apache.airavata:airavata-orchestrator-service 0.21-SNAPSHOT
  • org.apache.airavata:airavata-registry-cpi 0.21-SNAPSHOT
  • org.apache.airavata:airavata-sharing-registry-server 0.21-SNAPSHOT
  • org.apache.airavata:airavata-standalone-server 0.21-SNAPSHOT
  • org.apache.airavata:db-event-manager 0.21-SNAPSHOT
  • org.apache.airavata:email-monitor 0.21-SNAPSHOT
  • org.apache.airavata:helix-spectator 0.21-SNAPSHOT
  • org.apache.airavata:profile-service-server 0.21-SNAPSHOT
  • org.apache.airavata:realtime-monitor 0.21-SNAPSHOT
  • org.apache.airavata:registry-api-service 0.21-SNAPSHOT
  • org.apache.airavata:registry-api-stubs 0.21-SNAPSHOT
  • org.apache.commons:commons-pool2
  • org.apache.curator:curator-framework ${curator.version}
  • org.apache.derby:derby ${derby.version}
  • org.apache.derby:derbyclient ${derby.version}
  • org.apache.derby:derbynet ${derby.version}
  • org.apache.derby:derbytools ${derby.version}
  • org.apache.hadoop:hadoop-client 1.0.3
  • org.apache.hadoop:hadoop-core 1.0.3
  • org.apache.httpcomponents:httpclient 4.5.2
  • org.apache.kafka:kafka-clients ${kafka-clients.version}
  • org.apache.openjpa:openjpa ${openjpa.version}
  • org.apache.shiro:shiro-core 1.2.1
  • org.apache.thrift:libthrift ${thrift.version}
  • org.apache.tomcat.embed:tomcat-embed-jasper 7.0.22
  • org.apache.tomcat.embed:tomcat-embed-logging-juli 7.0.22
  • org.apache.zookeeper:zookeeper 3.4.0
  • org.bouncycastle:bcprov-jdk15on
  • org.codehaus.groovy:groovy ${groovy.version}
  • org.codehaus.groovy:groovy-templates ${groovy.version}
  • org.codehaus.jackson:jackson-core-asl 1.9.13
  • org.codehaus.jackson:jackson-jaxrs 1.9.13
  • org.codehaus.jackson:jackson-mapper-asl 1.9.13
  • org.codehaus.jackson:jackson-xc 1.9.13
  • org.ebaysf.web:cors-filter ${ebay.cors.filter}
  • org.hamcrest:hamcrest-all 1.1
  • org.json:json ${json.version}
  • org.mockito:mockito-all 1.8.5
  • org.slf4j:jcl-over-slf4j
  • xerces:xercesImpl 2.9.1
modules/ide-integration/pom.xml maven
  • org.apache.airavata:airavata-api-server ${project.version}
  • org.apache.airavata:airavata-credential-store ${project.version}
  • org.apache.airavata:airavata-orchestrator-service ${project.version}
  • org.apache.airavata:airavata-sharing-registry-server ${project.version}
  • org.apache.airavata:db-event-manager ${project.version}
  • org.apache.airavata:email-monitor ${project.version}
  • org.apache.airavata:helix-spectator ${project.version}
  • org.apache.airavata:profile-service-server ${project.version}
  • org.apache.airavata:registry-api-service ${project.version}
  • org.mariadb.jdbc:mariadb-java-client 2.0.2
modules/ide-integration/src/main/containers/pga/airavata-php-gateway/app/tests/selenium/pom.xml maven
  • com.google.guava:guava 18.0
  • commons-io:commons-io 2.4
  • commons-logging:commons-logging 1.1.3
  • org.apache.commons:commons-exec 1.1
  • org.apache.httpcomponents:httpclient 4.3.5
  • org.apache.httpcomponents:httpcore 4.3.2
  • org.seleniumhq.selenium:selenium-firefox-driver 2.44.0
  • org.seleniumhq.selenium:selenium-java 2.44.0
  • org.seleniumhq.selenium:selenium-remote-driver 2.44.0
  • junit:junit 4.8.2 test
  • org.seleniumhq.selenium.client-drivers:selenium-java-client-driver 1.0.1 test
modules/job-monitor/email-monitor/pom.xml maven
  • com.sun.mail:javax.mail
  • javax.mail:javax.mail-api
  • org.apache.airavata:job-monitor-api ${project.version}
  • org.yaml:snakeyaml
modules/job-monitor/job-monitor-api/pom.xml maven
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:task-core
  • org.apache.kafka:kafka-clients
modules/job-monitor/pom.xml maven
  • com.sun.mail:javax.mail 1.6.2
  • javax.mail:javax.mail-api 1.6.2
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.apache.airavata:task-core ${project.version}
  • org.yaml:snakeyaml 1.15
modules/job-monitor/real-time-monitor/pom.xml maven
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:job-monitor-api ${project.version}
modules/messaging/client/pom.xml maven
  • com.rabbitmq:amqp-client ${amqp.client.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-messaging-core ${project.version}
  • org.apache.airavata:airavata-server-configuration ${project.version}
  • junit:junit test
  • org.slf4j:jcl-over-slf4j test
modules/messaging/core/pom.xml maven
  • com.rabbitmq:amqp-client ${amqp.client.version}
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-server-configuration ${project.version}
  • junit:junit test
  • org.slf4j:jcl-over-slf4j test
modules/orchestrator/orchestrator-client/pom.xml maven
  • org.apache.airavata:airavata-base-api 0.21-SNAPSHOT
  • org.apache.airavata:airavata-client-configuration 0.21-SNAPSHOT
  • org.apache.airavata:airavata-data-models 0.21-SNAPSHOT
  • org.apache.airavata:airavata-model-utils 0.21-SNAPSHOT
  • org.apache.thrift:libthrift ${thrift.version}
modules/orchestrator/orchestrator-core/pom.xml maven
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-credential-store ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-messaging-core ${project.version}
  • org.apache.airavata:airavata-model-utils ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • junit:junit test
  • org.apache.airavata:airavata-server-configuration test
  • org.apache.derby:derby ${derby.version} test
  • org.apache.derby:derbyclient ${derby.version} test
  • org.apache.derby:derbynet ${derby.version} test
  • org.testng:testng 6.1.1 test
modules/orchestrator/orchestrator-service/pom.xml maven
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-credential-store 0.21-SNAPSHOT
  • org.apache.airavata:airavata-model-utils 0.21-SNAPSHOT
  • org.apache.airavata:airavata-orchestrator-client 0.21-SNAPSHOT
  • org.apache.airavata:airavata-orchestrator-core 0.21-SNAPSHOT
  • org.apache.airavata:cluster-monitoring 0.21-SNAPSHOT
  • org.apache.thrift:libthrift ${thrift.version}
  • org.apache.airavata:airavata-server-configuration test
modules/platform-monitoring/pom.xml maven
  • io.prometheus:simpleclient 0.9.0
  • io.prometheus:simpleclient_hotspot 0.9.0
  • io.prometheus:simpleclient_httpserver 0.9.0
  • io.prometheus:simpleclient_pushgateway 0.9.0
modules/registry/registry-core/pom.xml maven
  • mysql:mysql-connector-java 5.1.34
  • net.sf.dozer:dozer ${dozer.version}
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-data-models 0.21-SNAPSHOT
  • org.apache.airavata:airavata-registry-cpi 0.21-SNAPSHOT
  • org.apache.derby:derby 10.11.1.1
  • org.apache.derby:derbyclient 10.11.1.1
  • org.apache.derby:derbynet 10.11.1.1
  • org.apache.derby:derbytools 10.11.1.1
  • org.apache.ibatis:ibatis-sqlmap 2.3.0
  • org.apache.openjpa:openjpa ${openjpa.version}
  • org.mariadb.jdbc:mariadb-java-client 2.0.2
  • junit:junit 4.12 test
  • org.apache.airavata:airavata-server-configuration test
modules/registry/registry-cpi/pom.xml maven
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • junit:junit test
  • org.slf4j:jcl-over-slf4j test
modules/registry/registry-server/registry-api-service/pom.xml maven
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-messaging-core ${project.version}
  • org.apache.airavata:airavata-registry-core ${project.version}
  • org.apache.airavata:airavata-registry-cpi ${project.version}
  • org.apache.airavata:airavata-sharing-registry-stubs ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.apache.thrift:libthrift ${thrift.version}
modules/registry/registry-server/registry-api-stubs/pom.xml maven
  • org.apache.airavata:airavata-base-api ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.thrift:libthrift ${thrift.version}
modules/registry/registry-tools/jpa-gen/pom.xml maven
  • org.slf4j:jcl-over-slf4j test
modules/registry/registry-tools/registry-tool/pom.xml maven
  • commons-cli:commons-cli 1.1
  • org.apache.derby:derby 10.9.1.0
  • org.apache.derby:derbyclient 10.9.1.0
  • org.apache.derby:derbynet 10.9.1.0
  • org.apache.derby:derbytools 10.9.1.0
  • org.slf4j:jcl-over-slf4j 1.6.1
modules/security/pom.xml maven
  • commons-dbcp:commons-dbcp 1.4
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.shiro:shiro-core 1.2.1
  • junit:junit 4.7 test
modules/server/pom.xml maven
  • org.apache.airavata:airavata-api-server ${project.version}
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-orchestrator-client ${project.version}
  • org.apache.airavata:airavata-server-configuration ${project.version}
  • junit:junit 4.7 test
modules/sharing-registry/sharing-data-migrator/pom.xml maven
  • org.apache.airavata:airavata-commons ${project.version}
  • org.apache.airavata:airavata-credential-store-stubs ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.airavata:airavata-sharing-registry-server ${project.version}
  • org.apache.airavata:iam-admin-services-core ${project.version}
  • org.apache.airavata:registry-api-stubs ${project.version}
  • org.apache.airavata:services-security ${project.version}
  • org.apache.thrift:libthrift 0.9.3
  • org.mariadb.jdbc:mariadb-java-client 2.0.2
modules/sharing-registry/sharing-registry-distribution/pom.xml maven
  • mysql:mysql-connector-java ${mysql.connector.version}
  • net.sf.dozer:dozer ${dozer.version}
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-sharing-registry-server ${project.version}
  • org.apache.airavata:airavata-sharing-registry-stubs ${project.version}
  • org.apache.openjpa:openjpa ${openjpa.version}
  • org.apache.thrift:libthrift ${thrift.version}
modules/sharing-registry/sharing-registry-server/pom.xml maven
  • commons-lang:commons-lang ${commons.lang.version}
  • mysql:mysql-connector-java ${mysql.connector.version}
  • net.sf.dozer:dozer ${dozer.version}
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-messaging-core ${project.version}
  • org.apache.airavata:airavata-server-configuration 0.21-SNAPSHOT
  • org.apache.airavata:airavata-sharing-registry-stubs 0.21-SNAPSHOT
  • org.apache.openjpa:openjpa ${openjpa.version}
  • org.apache.thrift:libthrift ${thrift.version}
  • org.databene:contiperf 2.3.4
modules/sharing-registry/sharing-registry-stubs/pom.xml maven
  • org.apache.airavata:airavata-base-api ${project.version}
  • org.apache.airavata:airavata-data-models ${project.version}
  • org.apache.thrift:libthrift ${thrift.version}
pom.xml maven
  • com.google.code.gson:gson 2.3
  • com.google.guava:guava 20.0
  • junit:junit 4.12
  • org.apache.airavata:airavata-client-configuration 0.21-SNAPSHOT
  • org.apache.airavata:airavata-server-configuration 0.21-SNAPSHOT
  • org.apache.commons:commons-pool2 2.7.0
  • org.apache.curator:curator-framework 2.8.0
  • org.apache.kafka:kafka-clients 1.0.0
  • org.apache.logging.log4j:log4j-1.2-api 2.17.2
  • org.apache.logging.log4j:log4j-1.2-api
  • org.apache.logging.log4j:log4j-api 2.17.2
  • org.apache.logging.log4j:log4j-api
  • org.apache.logging.log4j:log4j-core 2.17.2
  • org.apache.logging.log4j:log4j-core
  • org.apache.logging.log4j:log4j-slf4j-impl 2.17.2
  • org.apache.logging.log4j:log4j-slf4j-impl
  • org.apache.zookeeper:zookeeper 3.4.0
  • org.bouncycastle:bcpkix-jdk15on 1.56
  • org.bouncycastle:bcprov-jdk15on 1.56
  • org.slf4j:jcl-over-slf4j 1.7.25
  • org.slf4j:slf4j-api 1.7.25
  • org.slf4j:slf4j-simple 1.7.25
  • org.jmockit:jmockit 1.44 test
tools/load-client/pom.xml maven
  • commons-cli:commons-cli 1.2
  • org.apache.airavata:airavata-api-stubs ${project.version}
  • org.apache.airavata:sshj-agent ${project.version}
  • org.jboss.resteasy:resteasy-client 3.0.14.Final
  • org.keycloak:keycloak-admin-client 2.5.5.Final
  • org.keycloak:keycloak-authz-client 2.5.4.Final
  • org.yaml:snakeyaml 1.15
modules/ide-integration/src/main/containers/pga/airavata-php-gateway/composer.json packagist
  • graham-campbell/markdown *
  • laravel/framework 4.2.*
  • moon/properties 0.1
  • phpmailer/phpmailer v5.2.*
  • teepluss/theme 1.*@dev
modules/ide-integration/src/main/containers/pga/airavata-php-gateway/composer.lock packagist
  • classpreloader/classpreloader 1.0.2
  • d11wtq/boris v1.0.8
  • erusev/parsedown 1.5.4
  • erusev/parsedown-extra 0.7.1
  • filp/whoops 1.1.10
  • graham-campbell/markdown v2.1.0
  • ircmaxell/password-compat v1.0.4
  • jeremeamia/SuperClosure 1.0.2
  • laravel/framework v4.2.22
  • monolog/monolog 1.23.0
  • moon/properties 0.1
  • nesbot/carbon 1.34.0
  • nikic/php-parser v0.9.5
  • paragonie/random_compat v1.4.3
  • patchwork/utf8 v1.3.1
  • phpmailer/phpmailer v5.2.26
  • phpseclib/phpseclib 0.3.10
  • predis/predis v0.8.7
  • psr/log 1.0.2
  • stack/builder v1.0.5
  • swiftmailer/swiftmailer v5.4.12
  • symfony/browser-kit v2.7.49
  • symfony/console v2.7.49
  • symfony/css-selector v2.7.49
  • symfony/debug v2.7.49
  • symfony/dom-crawler v2.7.49
  • symfony/event-dispatcher v2.8.46
  • symfony/filesystem v2.8.46
  • symfony/finder v2.7.49
  • symfony/http-foundation v2.7.49
  • symfony/http-kernel v2.7.28
  • symfony/polyfill-ctype v1.9.0
  • symfony/polyfill-mbstring v1.9.0
  • symfony/process v2.7.49
  • symfony/routing v2.7.49
  • symfony/security-core v2.7.49
  • symfony/translation v2.7.49
  • teepluss/theme 1.x-dev
  • twig/twig v1.16.2
airavata-api/airavata-client-sdks/airavata-python-sdk/requirements.txt pypi
  • oauthlib *
  • paramiko *
  • pysftp *
  • requests ==2.13.0
  • requests-oauthlib ==0.7.0
  • scp *
  • thrift ==0.10.0
  • thrift_connector ==0.24
  • urllib3 *
dev-tools/ansible/requirements.txt pypi
  • Jinja2 ==3.1.1 development
  • MarkupSafe ==2.1.1 development
  • PyYAML ==6.0 development
  • ansible ==6.0.0 development
  • ansible-core ==2.13.1 development
  • certifi ==2021.10.8 development
  • cffi ==1.15.0 development
  • charset-normalizer ==2.0.12 development
  • cryptography ==36.0.2 development
  • docker ==5.0.3 development
  • idna ==3.3 development
  • packaging ==21.3 development
  • pycparser ==2.21 development
  • pyparsing ==3.0.8 development
  • requests ==2.27.1 development
  • resolvelib ==0.5.4 development
  • urllib3 ==1.26.9 development
  • websocket-client ==1.3.2 development
sandbox/simstream/setup.py pypi
  • pika *
airavata-api/airavata-client-sdks/airavata-cpp-sdk/pom.xml maven
airavata-api/airavata-client-sdks/airavata-php-sdk/pom.xml maven
airavata-api/airavata-client-sdks/pom.xml maven
airavata-api/pom.xml maven
airavata-services/profile-service/pom.xml maven
airavata-services/profile-service/profile-service-client-sdks/pom.xml maven
modules/airavata-helix/platform-monitor/pom.xml maven
modules/airavata-helix/pom.xml maven
modules/airavata-metascheduler/metadata-analyzer/pom.xml maven
  • org.apache.airavata:agent-api 0.21-SNAPSHOT
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-data-models 0.21-SNAPSHOT
  • org.apache.airavata:airavata-messaging-core 0.21-SNAPSHOT
  • org.apache.airavata:metascheduler-core 0.21-SNAPSHOT
  • org.apache.airavata:registry-api-stubs 0.21-SNAPSHOT
  • org.quartz-scheduler:quartz 2.3.0
modules/airavata-metascheduler/metascheduler-core/pom.xml maven
  • org.apache.airavata:airavata-messaging-core 0.21-SNAPSHOT compile
  • org.quartz-scheduler:quartz 2.2.1 compile
  • org.apache.airavata:agent-api 0.21-SNAPSHOT
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-data-models 0.21-SNAPSHOT
  • org.apache.airavata:airavata-messaging-core 0.21-SNAPSHOT
  • org.apache.airavata:registry-api-stubs 0.21-SNAPSHOT
  • org.quartz-scheduler:quartz 2.3.0
modules/airavata-metascheduler/pom.xml maven
modules/airavata-metascheduler/process-scheduler/pom.xml maven
  • org.apache.airavata:helix-spectator 0.21-SNAPSHOT compile
  • org.quartz-scheduler:quartz 2.3.0 compile
  • org.apache.airavata:agent-api 0.21-SNAPSHOT
  • org.apache.airavata:airavata-orchestrator-core 0.21-SNAPSHOT
  • org.apache.airavata:metascheduler-core 0.21-SNAPSHOT
  • org.apache.airavata:task-core 0.21-SNAPSHOT
  • org.quartz-scheduler:quartz 2.3.0
modules/computer-resource-monitoring-service/pom.xml maven
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT compile
  • org.apache.airavata:agent-api 0.21-SNAPSHOT
  • org.apache.airavata:airavata-commons 0.21-SNAPSHOT
  • org.apache.airavata:airavata-orchestrator-core 0.21-SNAPSHOT
  • org.apache.airavata:helix-spectator 0.21-SNAPSHOT
  • org.apache.airavata:metascheduler-core 0.21-SNAPSHOT
  • org.apache.airavata:task-core 0.21-SNAPSHOT
  • org.quartz-scheduler:quartz 2.3.0
modules/configuration/client/pom.xml maven
modules/configuration/pom.xml maven
modules/configuration/server/pom.xml maven
modules/credential-store/pom.xml maven
modules/messaging/pom.xml maven
modules/orchestrator/pom.xml maven
modules/registry/pom.xml maven
modules/registry/registry-server/pom.xml maven
modules/registry/registry-tools/pom.xml maven
modules/sharing-registry/pom.xml maven
tools/pom.xml maven
airavata-api/airavata-client-sdks/airavata-python-sdk/setup.py pypi
modules/agent-framework/airavata-agent/Dockerfile docker
  • python slim build