You can download resteasy-atom-provider-3.0.14.final.jar in this page.
JBoss Open Source
resteasy-atom-provider-3.0.14.final.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/org.jboss.resteasy/resteasy-atom-provider/pom.properties META-INF/maven/org.jboss.resteasy/resteasy-atom-provider/pom.xml META-INF/services/javax.ws.rs.ext.Providers atom-app/categorydocuments.rnc atom-app/servicedocments.rnc org.jboss.resteasy.plugins.providers.atom.AtomEntryProvider.class org.jboss.resteasy.plugins.providers.atom.AtomFeedProvider.class org.jboss.resteasy.plugins.providers.atom.BaseLink.class org.jboss.resteasy.plugins.providers.atom.Category.class org.jboss.resteasy.plugins.providers.atom.CommonAttributes.class org.jboss.resteasy.plugins.providers.atom.Content.class org.jboss.resteasy.plugins.providers.atom.Entry.class org.jboss.resteasy.plugins.providers.atom.Feed.class org.jboss.resteasy.plugins.providers.atom.Generator.class org.jboss.resteasy.plugins.providers.atom.Link.class org.jboss.resteasy.plugins.providers.atom.MediaTypeAdapter.class org.jboss.resteasy.plugins.providers.atom.Person.class org.jboss.resteasy.plugins.providers.atom.RelativeLink.class org.jboss.resteasy.plugins.providers.atom.Source.class org.jboss.resteasy.plugins.providers.atom.Text.class org.jboss.resteasy.plugins.providers.atom.UriAdapter.class org.jboss.resteasy.plugins.providers.atom.app.AppAccept.class org.jboss.resteasy.plugins.providers.atom.app.AppCategories.class org.jboss.resteasy.plugins.providers.atom.app.AppCollection.class org.jboss.resteasy.plugins.providers.atom.app.AppCommonAttributes.class org.jboss.resteasy.plugins.providers.atom.app.AppService.class org.jboss.resteasy.plugins.providers.atom.app.AppWorkspace.class org.jboss.resteasy.plugins.providers.atom.app.BooleanAdapter.class org.jboss.resteasy.plugins.providers.atom.app.package-info.class org.jboss.resteasy.plugins.providers.atom.package-info.class org.jboss.resteasy.plugins.providers.resteasy_atom.i18n.Messages.class org/jboss/resteasy/plugins/providers/resteasy_atom/i18n/Messages.i18n.properties
resteasy-atom-provider-3.0.14.final.pom file content.
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxrs-all</artifactId> <version>3.0.14.Final</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>resteasy-atom-provider</artifactId> <packaging>jar</packaging> <name>Resteasy Atom Provider</name> <description/> <dependencies> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxrs</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxb-provider</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </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-testsuite</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>tjws</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </dependency> <dependency> <groupId>org.jboss.spec.javax.annotation</groupId> <artifactId>jboss-annotations-api_1.2_spec</artifactId> <scope>test</scope> </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> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <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/plugins/providers/resteasy_atom/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>
<dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-atom-provider</artifactId> <version>3.0.14.final</version> </dependency>
If you think the following resteasy-atom-provider-3.0.14.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download resteasy-atom-provider-3.0.14.final.jar file