Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d37283f

Browse files
committedApr 10, 2018
Release updated
1 parent 71158ee commit d37283f

File tree

1 file changed

+93
-3
lines changed

1 file changed

+93
-3
lines changed
 

‎pom.xml

Lines changed: 93 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,96 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>in.erail</groupId>
55
<artifactId>api-framework-amazon-lambda</artifactId>
6-
<version>1.0-SNAPSHOT</version>
6+
<version>2.1</version>
77
<packaging>jar</packaging>
8+
<developers>
9+
<developer>
10+
<id>vinscom</id>
11+
<name>vinscom</name>
12+
</developer>
13+
</developers>
14+
<description>
15+
Lib to run API Framework code on Amazon Lambda
16+
</description>
17+
<url>https://vinscom.github.io/api-framework-start/#_amazon_lambda_api</url>
18+
<scm>
19+
<connection>scm:git:git@github.com:vinscom/api-framework-amazon-lambda.git</connection>
20+
<developerConnection>scm:git:git@github.com:vinscom/api-framework-amazon-lambda.git</developerConnection>
21+
<url>git@github.com:vinscom/api-framework-amazon-lambda.git</url>
22+
</scm>
23+
<licenses>
24+
<license>
25+
<name>The Apache Software License, Version 2.0</name>
26+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
<profiles>
31+
<profile>
32+
<id>release</id>
33+
<build>
34+
<plugins>
35+
<plugin>
36+
<groupId>org.apache.maven.plugins</groupId>
37+
<artifactId>maven-source-plugin</artifactId>
38+
<version>2.4</version>
39+
<executions>
40+
<execution>
41+
<id>attach-sources</id>
42+
<goals>
43+
<goal>jar-no-fork</goal>
44+
</goals>
45+
</execution>
46+
</executions>
47+
</plugin>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-javadoc-plugin</artifactId>
51+
<version>2.10.4</version>
52+
<executions>
53+
<execution>
54+
<id>attach-javadocs</id>
55+
<goals>
56+
<goal>jar</goal>
57+
</goals>
58+
</execution>
59+
</executions>
60+
</plugin>
61+
<plugin>
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-gpg-plugin</artifactId>
64+
<version>1.6</version>
65+
<executions>
66+
<execution>
67+
<id>sign-artifacts</id>
68+
<phase>verify</phase>
69+
<goals>
70+
<goal>sign</goal>
71+
</goals>
72+
</execution>
73+
</executions>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.sonatype.plugins</groupId>
77+
<artifactId>nexus-staging-maven-plugin</artifactId>
78+
<version>1.6.8</version>
79+
<extensions>true</extensions>
80+
<configuration>
81+
<serverId>ossrh</serverId>
82+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
83+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
84+
</configuration>
85+
</plugin>
86+
</plugins>
87+
</build>
88+
<distributionManagement>
89+
<snapshotRepository>
90+
<id>ossrh</id>
91+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
92+
</snapshotRepository>
93+
</distributionManagement>
94+
</profile>
95+
</profiles>
896
<dependencies>
997
<dependency>
1098
<groupId>com.amazonaws</groupId>
@@ -19,12 +107,12 @@
19107
<dependency>
20108
<groupId>in.erail</groupId>
21109
<artifactId>api-framework</artifactId>
22-
<version>1.0-SNAPSHOT</version>
110+
<version>${api.framework.version}</version>
23111
</dependency>
24112
<dependency>
25113
<groupId>in.erail</groupId>
26114
<artifactId>api-framework</artifactId>
27-
<version>1.0-SNAPSHOT</version>
115+
<version>${api.framework.version}</version>
28116
<classifier>common-config</classifier>
29117
<type>zip</type>
30118
</dependency>
@@ -58,5 +146,7 @@
58146
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59147
<maven.compiler.source>1.8</maven.compiler.source>
60148
<maven.compiler.target>1.8</maven.compiler.target>
149+
<api.framework.version>2.1</api.framework.version>
61150
</properties>
151+
<name>api-framework-amazon-lambda</name>
62152
</project>

0 commit comments

Comments
 (0)
Please sign in to comment.