Download airavata-credential-store-0.16.jar file

Introduction

You can download airavata-credential-store-0.16.jar in this page.

License

Apache License

Type List

airavata-credential-store-0.16.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.airavata/airavata-credential-store/pom.properties
META-INF/maven/org.apache.airavata/airavata-credential-store/pom.xml
org.apache.airavata.credential.store.credential.AuditInfo.class
org.apache.airavata.credential.store.credential.CommunityUser.class
org.apache.airavata.credential.store.credential.Credential.class
org.apache.airavata.credential.store.credential.impl.certificate.CertificateAuditInfo.class
org.apache.airavata.credential.store.credential.impl.certificate.CertificateCredential.class
org.apache.airavata.credential.store.credential.impl.password.PasswordCredential.class
org.apache.airavata.credential.store.credential.impl.ssh.SSHCredential.class
org.apache.airavata.credential.store.credential.impl.ssh.SSHCredentialGenerator.class
org.apache.airavata.credential.store.notifier.CredentialStoreNotifier.class
org.apache.airavata.credential.store.notifier.NotificationMessage.class
org.apache.airavata.credential.store.notifier.NotifierBootstrap.class
org.apache.airavata.credential.store.notifier.impl.EmailNotificationMessage.class
org.apache.airavata.credential.store.notifier.impl.EmailNotifier.class
org.apache.airavata.credential.store.notifier.impl.EmailNotifierConfiguration.class
org.apache.airavata.credential.store.server.CredentialStoreServer.class
org.apache.airavata.credential.store.server.CredentialStoreServerHandler.class
org.apache.airavata.credential.store.servlet.CredentialBootstrapper.class
org.apache.airavata.credential.store.servlet.CredentialStoreCallbackServlet.class
org.apache.airavata.credential.store.servlet.CredentialStoreStartServlet.class
org.apache.airavata.credential.store.store.CredentialReader.class
org.apache.airavata.credential.store.store.CredentialReaderFactory.class
org.apache.airavata.credential.store.store.CredentialStoreException.class
org.apache.airavata.credential.store.store.CredentialWriter.class
org.apache.airavata.credential.store.store.impl.CertificateCredentialWriter.class
org.apache.airavata.credential.store.store.impl.CredentialReaderImpl.class
org.apache.airavata.credential.store.store.impl.SSHCredentialWriter.class
org.apache.airavata.credential.store.store.impl.db.CommunityUserDAO.class
org.apache.airavata.credential.store.store.impl.db.CredentialsDAO.class
org.apache.airavata.credential.store.store.impl.db.ParentDAO.class
org.apache.airavata.credential.store.util.ConfigurationReader.class
org.apache.airavata.credential.store.util.CredentialStoreConstants.class
org.apache.airavata.credential.store.util.PrivateKeyStore.class
org.apache.airavata.credential.store.util.TokenGenerator.class
org.apache.airavata.credential.store.util.Utility.class

Pom

airavata-credential-store-0.16.pom file content.

<?xml version="1.0" encoding="UTF-8"?>

<!--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. -->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>org.apache.airavata</groupId>
        <artifactId>airavata</artifactId>
        <version>0.16</version>
        <relativePath>../../../pom.xml</relativePath>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>airavata-credential-store</artifactId>
    <name>Airavata Credential Store</name>
    <description>Module to manage credentials</description>

    <dependencies>
        <dependency>
            <groupId>org.apache.airavata</groupId>
            <artifactId>airavata-credential-store-stubs</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>edu.uiuc.ncsa.myproxy</groupId>
            <artifactId>oa4mp-client-api</artifactId>
            <version>${oa4mp.version}</version>
        </dependency>
        <dependency>
            <groupId>edu.uiuc.ncsa.myproxy</groupId>
            <artifactId>oa4mp-client-loader-oauth1</artifactId>
            <version>${oa4mp.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>net.oauth.core</groupId>
                    <artifactId>oauth-httpclient4</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>net.oauth.core</groupId>
                    <artifactId>oauth-consumer</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>mysql</groupId>
                    <artifactId>mysql-connector-java</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>postgresql</groupId>
                    <artifactId>postgresql</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.34</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.7</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.derby</groupId>
            <artifactId>derby</artifactId>
            <version>${derby.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.airavata</groupId>
            <artifactId>airavata-server-configuration</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.derby</groupId>
            <artifactId>derbyclient</artifactId>
            <version>${derby.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.derby</groupId>
            <artifactId>derbynet</artifactId>
            <version>${derby.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.derby</groupId>
            <artifactId>derbytools</artifactId>
            <version>${derby.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.airavata</groupId>
            <artifactId>airavata-commons</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.jcraft</groupId>
            <artifactId>jsch</artifactId>
            <version>0.1.50</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-email</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.3.2</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>${surefire.version}</version>
                <inherited>true</inherited>
                <configuration>
                    <systemPropertyVariables>
                        <credential.module.directory>${basedir}</credential.module.directory>
                    </systemPropertyVariables>
                    <excludes>
                        <exclude>**/DAOBaseTestCase.java</exclude>
                        <exclude>**/MappingDAOTest.java</exclude>
                    </excludes>
                    <testSourceDirectory>${basedir}\src\test\java\</testSourceDirectory>
                </configuration>
            </plugin>

        </plugins>
        <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
        <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
        <testResources>
            <testResource>
                <directory>${project.basedir}/src/test/resources</directory>
            </testResource>
        </testResources>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.apache.airavata</groupId>
   <artifactId>airavata-credential-store</artifactId>
   <version>0.16</version>
</dependency>

Download

If you think the following airavata-credential-store-0.16.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download airavata-credential-store-0.16.jar file




PreviousNext

Related