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 99 <dependency >
1010 <groupId >com.amazonaws</groupId >
1111 <artifactId >aws-lambda-java-core</artifactId >
12- <version >1.1 .0</version >
12+ <version >1.2 .0</version >
1313 </dependency >
1414 <dependency >
1515 <groupId >com.amazonaws</groupId >
1616 <artifactId >aws-lambda-java-events</artifactId >
17- <version >1.1 .0</version >
17+ <version >1.3 .0</version >
1818 </dependency >
1919 <dependency >
2020 <groupId >in.erail</groupId >
3131 <dependency >
3232 <groupId >com.amazonaws</groupId >
3333 <artifactId >aws-lambda-java-log4j2</artifactId >
34- <version >1.0 .0</version >
34+ <version >1.1 .0</version >
3535 </dependency >
3636 </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 >
3757 <properties >
3858 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
3959 <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