File tree Expand file tree Collapse file tree 4 files changed +56
-3
lines changed
config-layers/common/io/vertx/core Expand file tree Collapse file tree 4 files changed +56
-3
lines changed Original file line number Diff line number Diff line change
1
+ # /io/vertx/core/VertxOptions
2
+
3
+ clustered =false
Original file line number Diff line number Diff line change 9
9
<dependency >
10
10
<groupId >com.amazonaws</groupId >
11
11
<artifactId >aws-lambda-java-core</artifactId >
12
- <version >1.1 .0</version >
12
+ <version >1.2 .0</version >
13
13
</dependency >
14
14
<dependency >
15
15
<groupId >com.amazonaws</groupId >
16
16
<artifactId >aws-lambda-java-events</artifactId >
17
- <version >1.1 .0</version >
17
+ <version >1.3 .0</version >
18
18
</dependency >
19
19
<dependency >
20
20
<groupId >in.erail</groupId >
31
31
<dependency >
32
32
<groupId >com.amazonaws</groupId >
33
33
<artifactId >aws-lambda-java-log4j2</artifactId >
34
- <version >1.0 .0</version >
34
+ <version >1.1 .0</version >
35
35
</dependency >
36
36
</dependencies >
37
+ <build >
38
+ <plugins >
39
+ <plugin >
40
+ <artifactId >maven-assembly-plugin</artifactId >
41
+ <version >2.6</version >
42
+ <executions >
43
+ <execution >
44
+ <id >commong-config</id >
45
+ <phase >package</phase >
46
+ <goals >
47
+ <goal >single</goal >
48
+ </goals >
49
+ <configuration >
50
+ <descriptor >src/assembly/common-config.xml</descriptor >
51
+ </configuration >
52
+ </execution >
53
+ </executions >
54
+ </plugin >
55
+ </plugins >
56
+ </build >
37
57
<properties >
38
58
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
39
59
<maven .compiler.source>1.8</maven .compiler.source>
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <assembly xmlns =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd" >
5
+ <id >common-config</id >
6
+ <formats >
7
+ <format >zip</format >
8
+ </formats >
9
+ <fileSets >
10
+ <fileSet >
11
+ <directory >${project.basedir}/config-layers/common</directory >
12
+ <outputDirectory >/config</outputDirectory >
13
+ </fileSet >
14
+ </fileSets >
15
+ </assembly >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <Configuration packages =" com.amazonaws.services.lambda.runtime.log4j2.LambdaAppender" >
3
+ <Appenders >
4
+ <Lambda name =" Lambda" >
5
+ <PatternLayout >
6
+ <pattern >%d{yyyy-MM-dd HH:mm:ss} %X{AWSRequestId} %-5p %c{1}:%L - %m%n</pattern >
7
+ </PatternLayout >
8
+ </Lambda >
9
+ </Appenders >
10
+ <Loggers >
11
+ <Root level =" debug" >
12
+ <AppenderRef ref =" Lambda" />
13
+ </Root >
14
+ </Loggers >
15
+ </Configuration >
You can’t perform that action at this time.
0 commit comments