api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.cognitect.aws</groupId> <artifactId>api</artifactId> <version>0.8.741</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.cognitect.aws</groupId> <artifactId>api</artifactId> <version>0.8.741</version> <packaging>jar</packaging> <name>aws-api</name> <description>A Clojure API for the AWS API</description> <url>http://github.com/cognitect-labs/aws-api</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Cognitect</name> <email>labs@cognitect.com</email> <organization>Cognitect</organization> <organizationUrl>http://cognitect.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:cognitect-labs/aws-api.git </connection> <developerConnection>scm:git:git@github.com:cognitect-labs/aws-api.git </developerConnection> <url>git@github.com:cognitect-labs/aws-api.git</url> </scm> <dependencies> <dependency> <groupId>org.clojure</groupId> <artifactId>data.json</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>org.clojure</groupId> <artifactId>clojure</artifactId> <version>1.12.0</version> </dependency> <dependency> <groupId>org.clojure</groupId> <artifactId>tools.logging</artifactId> <version>1.3.0</version> </dependency> <dependency> <groupId>org.clojure</groupId> <artifactId>data.xml</artifactId> <version>0.2.0-alpha9</version> </dependency> <dependency> <groupId>org.clojure</groupId> <artifactId>core.async</artifactId> <version>1.8.741</version> </dependency> </dependencies> <profiles> <profile> <id>autodoc</id> <dependencies> <dependency> <groupId>autodoc</groupId> <artifactId>autodoc</artifactId> <version>0.9.0</version> <scope>test</scope> </dependency> </dependencies> </profile> </profiles> <build> <resources> <resource> <directory>src</directory> </resource> </resources> <testResources> <testResource> <directory>dev-resources</directory> </testResource> <testResource> <directory>resources</directory> </testResource> </testResources> <directory>target</directory> <outputDirectory>target/classes</outputDirectory> <plugins> <plugin> <groupId>com.theoryinpractise</groupId> <artifactId>clojure-maven-plugin</artifactId> <version>1.7.1</version> <extensions>true</extensions> <configuration> <sourceDirectories> <sourceDirectory>src</sourceDirectory> </sourceDirectories> <testSourceDirectories> <testSourceDirectory>test</testSourceDirectory> </testSourceDirectories> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <executable>gpg</executable> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> <passphrase>${gpg.passphrase}</passphrase> </configuration> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.springframework.build</groupId> <artifactId>aws-maven</artifactId> <version>5.0.0.RELEASE</version> </extension> <extension> <groupId>com.gkatzioura.maven.cloud</groupId> <artifactId>s3-storage-wagon</artifactId> <version>1.0</version> </extension> </extensions> <sourceDirectory>src</sourceDirectory> </build> <repositories> <repository> <id>clojars</id> <url>https://repo.clojars.org/</url> </repository> </repositories> </project>