aws-lambda-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.bluejeans.aws.lambda</groupId>
<artifactId>aws-lambda-runtime</artifactId>
<version>0.0.2</version>
</dependency><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>
<groupId>com.bluejeans.aws.lambda</groupId>
<artifactId>aws-lambda-runtime</artifactId>
<version>0.0.2</version>
<packaging>jar</packaging>
<name>aws-lambda-runtime</name>
<url>http://maven.apache.org</url>
<description>Bluejeans AWS Lambda Runtime</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Dinesh Ilindra</name>
<email>dinesh@bluejeansnet.com; ilndinesh@gmail.com</email>
<organization>Blue Jeans</organization>
<organizationUrl>http://www.bluejeans.com</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/bluejeansnet/aws-lambda-template/tree/master</url>
</scm>
<properties>
<lambada.runtime.version>0.0.8</lambada.runtime.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.bluejeans.lambadaframework</groupId>
<artifactId>runtime</artifactId>
<version>${lambada.runtime.version}</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-log4j</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.bluejeans</groupId>
<artifactId>jin</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com.bluejeans</groupId>
<artifactId>utils</artifactId>
<version>1.2.4</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>4.4.0</version>
</dependency>
<dependency>
<groupId>com.bluejeans.aws.lambda</groupId>
<artifactId>aws-lambda-sandbox</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>/Work/Servers/aws-lambda/LambdaSandboxJava-1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.bluejeans.aws.lambda</groupId>
<artifactId>aws-lambda-rtentry</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>/Work/Servers/aws-lambda/LambdaJavaRTEntry-1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.bluejeans.aws.lambda</groupId>
<artifactId>aws-lambda-javaapi</artifactId>
<version>1.2</version>
<scope>system</scope>
<systemPath>/Work/Servers/aws-lambda/LambdaSandboxJavaAPI-1.2.jar</systemPath>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<scope>compile</scope>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</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-javadoc-plugin</artifactId>
<version>2.9.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-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>