Download resteasy-oauth-3.0.13.final.jar file

Introduction

You can download resteasy-oauth-3.0.13.final.jar in this page.

License

JBoss Open Source

Type List

resteasy-oauth-3.0.13.final.jar file has the following types.

META-INF/INDEX.LIST
META-INF/MANIFEST.MF
META-INF/maven/org.jboss.resteasy/resteasy-oauth/pom.properties
META-INF/maven/org.jboss.resteasy/resteasy-oauth/pom.xml
org.jboss.resteasy.auth.oauth.OAuthConsumer.class
org.jboss.resteasy.auth.oauth.OAuthConsumerRegistration.class
org.jboss.resteasy.auth.oauth.OAuthException.class
org.jboss.resteasy.auth.oauth.OAuthFilter.class
org.jboss.resteasy.auth.oauth.OAuthMemoryProvider.class
org.jboss.resteasy.auth.oauth.OAuthProvider.class
org.jboss.resteasy.auth.oauth.OAuthProviderChecker.class
org.jboss.resteasy.auth.oauth.OAuthRequestToken.class
org.jboss.resteasy.auth.oauth.OAuthServlet.class
org.jboss.resteasy.auth.oauth.OAuthToken.class
org.jboss.resteasy.auth.oauth.OAuthUtils.class
org.jboss.resteasy.auth.oauth.OAuthValidator.class
org.jboss.resteasy.auth.oauth.URLUtils.class
org.jboss.resteasy.auth.oauth.i18n.LogMessages.class
org.jboss.resteasy.auth.oauth.i18n.Messages.class
org/jboss/resteasy/auth/oauth/i18n/LogMessages.i18n.properties
org/jboss/resteasy/auth/oauth/i18n/Messages.i18n.properties

Pom

resteasy-oauth-3.0.13.final.pom file content.

<?xml version="1.0"?>
<project>
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>resteasy-jaxrs-all</artifactId>
        <groupId>org.jboss.resteasy</groupId>
        <version>3.0.13.Final</version>
        <relativePath>../../pom.xml</relativePath>
    </parent>

    <artifactId>resteasy-oauth</artifactId>
    <name>RESTEasy JAX-RS OAuth</name>
    <description/>

    <dependencies>
        <dependency>
            <groupId>net.oauth.core</groupId>
            <artifactId>oauth-provider</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.spec.javax.servlet</groupId>
            <artifactId>jboss-servlet-api_3.1_spec</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jaxrs</artifactId>
            <version>${project.version}</version>
        </dependency>
        
        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging</artifactId>
            <version>3.1.4.GA</version>
        </dependency>
        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging-annotations</artifactId>
            <version>1.2.0.Final</version>
            <!-- This is a compile-time dependency of this project, but is not needed at compile or runtime by other
                  projects that depend on this project.-->
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging-processor</artifactId>
            <version>1.2.0.Final</version>
            <!-- This is a compile-time dependency of this project, but is not needed at compile or runtime by other
                  projects that depend on this project.-->
            <scope>provided</scope>
            <optional>true</optional>
        </dependency> 
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jaxrs-testsuite</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <profiles>
        <profile>
            <id>i18n</id>
            <activation>
                <property>
                    <name>i18n</name>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-resources-plugin</artifactId>
                        <version>2.6</version>
                        <executions>
                            <execution>
                                <id>copy-resources</id>
                                <phase>initialize</phase>
                                <goals>
                                    <goal>copy-resources</goal>
                                </goals>
                                <configuration>
                                    <outputDirectory>${basedir}/src/main/resources/org/jboss/resteasy/auth/oauth/i18n</outputDirectory>
                                    <resources>
                                        <resource>
                                            <directory>${basedir}/src/test/resources/i18n</directory>
                                            <includes>
                                                <include>*</include>
                                            </includes>
                                        </resource>
                                    </resources>
                                    <overwrite>true</overwrite>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>

                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-compiler-plugin</artifactId>
                        <version>2.3.2</version>
                        <configuration>
                            <compilerArgument>
                                -AgeneratedTranslationFilesPath=${project.basedir}/target/generated-translation-files
                            </compilerArgument>
                        </configuration>
                    </plugin>
                    <plugin>
                       <groupId>org.apache.maven.plugins</groupId>
                       <artifactId>maven-surefire-plugin</artifactId>
                       <version>2.17</version>
                       <configuration>
                           <reuseForks>false</reuseForks>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.jboss.resteasy</groupId>
   <artifactId>resteasy-oauth</artifactId>
   <version>3.0.13.final</version>
</dependency>

Download

If you think the following resteasy-oauth-3.0.13.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download resteasy-oauth-3.0.13.final.jar file




PreviousNext

Related