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
Keywords from Contributors
Repository
A general purpose Distributed Systems Framework
Basic Info
- Host: GitHub
- Owner: apache
- License: apache-2.0
- Language: Java
- Default Branch: master
- Homepage: https://airavata.apache.org/
- Size: 168 MB
Statistics
- Stars: 127
- Watchers: 24
- Forks: 136
- Open Issues: 9
- Releases: 0
Topics
Metadata Files
README.md
Apache Airavata
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:
- Submit Batch Jobs via the Airavata Application Portal -- Example
- Launch Interactive Experiments through the Airavata Research Portal -- Example
- Explore and run published experiments from the Airavata Research Catalog -- Example
- 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
airavata– Main resource management and task orchestration middlewareairavata-custos– Identity and access management frameworkairavata-mft– Managed file transfer servicesairavata-portals– All frontends for airavata
📦 Data & Metadata Services
airavata-data-lake– Data lake and storage backendairavata-data-catalog– Metadata and search services
📚 Documentation & Branding
airavata-docs– Developer documentationairavata-user-docs– End-user guidesairavata-admin-user-docs– Admin-focused documentationairavata-custos-docs– Custos documentationairavata-site– Project website
🧪 Experimental & Research
airavata-sandbox– Prototypes and early-stage workairavata-labs– Experimental projectsairavata-jupyter-kernel– Jupyter integrationairavata-cerebrum– Airavata for Neuroscience
🔄 How Airavata Works
Airavata is composed as 4 top-level services that work together to facilitate the full lifecycle of computational jobs.

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.ServerMainCommand: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.HelixControllerCommand: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.

Participant
Class Name:
org.apache.airavata.helix.impl.participant.GlobalParticipantCommand: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.EmailBasedMonitorCommand: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.RealtimeMonitorCommand: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.PreWorkflowManagerCommand: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.PostWorkflowManagerCommand: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.

2. Airavata File Server (apache-airavata-file-server)
Class Name:
org.apache.airavata.file.server.FileServerApplicationCommand: `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:
- 🍴 Fork the repository
- 🌿 Create a feature branch
- ✨ Make your changes
- 🧪 Add tests if applicable
- 📝 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.AiravataDataMigratormodules/deployment-scriptsmodules/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.
Owner
- Name: The Apache Software Foundation
- Login: apache
- Kind: organization
- Website: https://www.apache.org/
- Repositories: 2,814
- Profile: https://github.com/apache
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
Top Committers
| Name | 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... | ||
Committer Domains (Top 20 + Academic)
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
Pull Request Labels
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-data-models/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-model-utils/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:airavata-gfac-core
The core GFAC functionality independent from any webservice implementation.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-gfac-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:airavata-credential-store
Module to manage credentials
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-credential-store/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-commons/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:airavata-server-configuration
Airavata Server Configuration
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-server-configuration/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:airavata-client-configuration
Airavata Client Configuration
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-client-configuration/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-registry-cpi/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-messaging-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-api-stubs/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-registry-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:airavata-security
Module for managing security features in Airavata
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-security/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-orchestrator-service/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/registry-api-stubs/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-orchestrator-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:airavata-standalone-server
Module Containing Classes which start the Airavata Standalone Server
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-standalone-server/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-service-stubs/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-credential-store-stubs/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-api-server/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-orchestrator-client/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-sharing-registry-server/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-sharing-registry-stubs/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-gfac-client/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-gfac-service/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-client-samples/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/services-security/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:profile-service-commons
Module to expose a profile-service-commons as a thrift service
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-service-commons/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/aurora-client/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:airavata-gfac-impl
This is the extension of GFAC Local.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-gfac-impl/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/iam-admin-services-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-user-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/cluster-monitoring/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/db-event-manager/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/registry-api-service/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-tenant-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/compute-account-provisioning/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
repo1.maven.org: org.apache.airavata:profile-service-server
Module to expose a profile service as a thrift service
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-service-server/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/credential-store/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-sharing-data-migrator/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-service-client-sdks/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-monitoring/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-service-client-samples/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-configuration/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/apache-airavata-distribution/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/workflow/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-sharing-registry-distribution/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/jpa-gen/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/user-profile-migration/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/apache-airavata-client-php-sdk/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-registry-tools/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-gfac/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-workflow-core/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/registry-server/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-services/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-api/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-gfac-application-specific-handlers/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/registry/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/registry-tool/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/cloud-provisioning/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/orchestrator/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-sharing-registry/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-messaging-client/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-client-sdks/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/apache-airavata-client-python-sdk/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/apache-airavata-client-cpp-sdk/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata-cloud/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/profile-service/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/airavata/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
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.
- Homepage: http://airavata.apache.org/
- Documentation: https://appdoc.app/artifact/org.apache.airavata/messaging/
- License: Apache-2.0,Apache-2.0
-
Latest release: 0.17
published almost 7 years ago
Rankings
rubygems.org: airavata
The Apache Airavata Ruby SDK for third party clients to integrate with Airavata middleware
- Homepage: https://github.com/apache/airavata
- Documentation: http://www.rubydoc.info/gems/airavata/
- License: apache-2.0
-
Latest release: 0.0.2
published about 5 years ago
Rankings
Maintainers (1)
pypi.org: airavata-jupyter-magic
Jupyter magics for running notebook cells on remote HPC resources. Powered by Apache Airavata.
- Homepage: https://github.com/apache/airavata
- Documentation: https://airavata-jupyter-magic.readthedocs.io/
- License: Apache-2.0
-
Latest release: 1.0.5
published 10 months ago
Rankings
Maintainers (1)
pypi.org: cybershuttle-sdk
Python SDK for Apache Airavata Cybershuttle
- Homepage: https://github.com/apache/airavata
- Documentation: https://cybershuttle-sdk.readthedocs.io/
- License: Apache Software License
-
Latest release: 0.0.1a4
published about 2 years ago
Rankings
Maintainers (1)
Dependencies
- adoptopenjdk/openjdk11 latest build
- adoptopenjdk/openjdk11 latest build
- 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
- adoptopenjdk/openjdk11 latest build
- adoptopenjdk/openjdk11 latest build
- adoptopenjdk/openjdk11 latest build
- adoptopenjdk/openjdk11 latest build
- adoptopenjdk/openjdk11 latest build
- dimuthuupe/sshd 1.0
- jboss/keycloak 2.5.4.Final
- mariadb 10.4.13
- rabbitmq latest
- wurstmeister/kafka latest
- zookeeper latest
- ubuntu 16.04 build
- nimmis/apache-php5 latest build
- dimuthuupe/pga 1.0
- mariadb 10.4.13
- 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
- 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}
- javax.annotation:javax.annotation-api ${javax.annotation.version}
- org.apache.thrift:libthrift ${thrift.version}
- 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}
- javax.annotation:javax.annotation-api ${javax.annotation.version}
- org.apache.thrift:libthrift ${thrift.version}
- org.apache.airavata:airavata-data-models ${project.version}
- junit:junit ${junit.version} test
- org.jmockit:jmockit ${jmockit.version} test
- 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
- 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
- org.apache.airavata:profile-service-stubs ${project.version}
- 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}
- 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}
- org.apache.airavata:airavata-base-api ${project.version}
- org.apache.airavata:airavata-data-models ${project.version}
- org.apache.airavata:profile-service-commons 0.21-SNAPSHOT
- org.apache.airavata:profile-service-commons 0.21-SNAPSHOT
- 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
- 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
- org.apache.airavata:agent-api ${project.version}
- com.jcraft:jsch 0.1.53
- commons-io:commons-io 1.4
- org.apache.airavata:agent-api ${project.version}
- com.hierynomus:sshj 0.23.0
- org.apache.airavata:ssh-agent ${project.version}
- 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
- org.apache.airavata:agent-api ${project.version}
- org.apache.helix:helix-core ${helix.version}
- 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}
- org.apache.airavata:task-api ${project.version}
- org.apache.airavata:task-core ${project.version}
- 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
- 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
- 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
- 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
- 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}
- org.apache.airavata:airavata-commons ${project.version}
- org.apache.airavata:airavata-messaging-core ${project.version}
- 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
- 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
- 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
- com.sun.mail:javax.mail
- javax.mail:javax.mail-api
- org.apache.airavata:job-monitor-api ${project.version}
- org.yaml:snakeyaml
- org.apache.airavata:airavata-commons ${project.version}
- org.apache.airavata:task-core
- org.apache.kafka:kafka-clients
- 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
- org.apache.airavata:airavata-commons ${project.version}
- org.apache.airavata:job-monitor-api ${project.version}
- 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
- 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
- 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}
- 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
- 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
- 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
- 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
- org.apache.airavata:airavata-commons ${project.version}
- org.apache.airavata:airavata-data-models ${project.version}
- junit:junit test
- org.slf4j:jcl-over-slf4j test
- 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}
- org.apache.airavata:airavata-base-api ${project.version}
- org.apache.airavata:airavata-data-models ${project.version}
- org.apache.thrift:libthrift ${thrift.version}
- org.slf4j:jcl-over-slf4j test
- 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
- 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
- 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
- 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
- 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}
- 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
- org.apache.airavata:airavata-base-api ${project.version}
- org.apache.airavata:airavata-data-models ${project.version}
- org.apache.thrift:libthrift ${thrift.version}
- 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
- 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
- graham-campbell/markdown *
- laravel/framework 4.2.*
- moon/properties 0.1
- phpmailer/phpmailer v5.2.*
- teepluss/theme 1.*@dev
- 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
- oauthlib *
- paramiko *
- pysftp *
- requests ==2.13.0
- requests-oauthlib ==0.7.0
- scp *
- thrift ==0.10.0
- thrift_connector ==0.24
- urllib3 *
- 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
- pika *
- 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
- 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
- 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
- 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
- python slim build