3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >in.erail</groupId >
5
5
<artifactId >api-framework-amazon-lambda</artifactId >
6
- <version >1.0-SNAPSHOT </version >
6
+ <version >2.1 </version >
7
7
<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 >
8
96
<dependencies >
9
97
<dependency >
10
98
<groupId >com.amazonaws</groupId >
19
107
<dependency >
20
108
<groupId >in.erail</groupId >
21
109
<artifactId >api-framework</artifactId >
22
- <version >1.0-SNAPSHOT </version >
110
+ <version >${api.framework.version} </version >
23
111
</dependency >
24
112
<dependency >
25
113
<groupId >in.erail</groupId >
26
114
<artifactId >api-framework</artifactId >
27
- <version >1.0-SNAPSHOT </version >
115
+ <version >${api.framework.version} </version >
28
116
<classifier >common-config</classifier >
29
117
<type >zip</type >
30
118
</dependency >
58
146
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
59
147
<maven .compiler.source>1.8</maven .compiler.source>
60
148
<maven .compiler.target>1.8</maven .compiler.target>
149
+ <api .framework.version>2.1</api .framework.version>
61
150
</properties >
151
+ <name >api-framework-amazon-lambda</name >
62
152
</project >
0 commit comments