|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 |
|
| 5 | + <name>Powertools for AWS Lambda (Java) library Examples - Core Utilities (logging, tracing, metrics) with SAM</name> |
5 | 6 | <groupId>software.amazon.lambda.examples</groupId>
|
6 |
| -<<<<<<<< HEAD:examples/powertools-examples-core-utilities/sam/pom.xml |
7 | 7 | <version>2.0.0-SNAPSHOT</version>
|
8 | 8 | <artifactId>powertools-examples-core-utilities-sam</artifactId>
|
9 | 9 | <packaging>jar</packaging>
|
10 |
| - |
11 |
| - <name>Powertools for AWS Lambda (Java) library Examples - Core Utilities (logging, tracing, metrics) with SAM</name> |
12 |
| -======== |
13 |
| - <version>1.16.1</version> |
14 |
| - <artifactId>powertools-examples-core-cdk</artifactId> |
15 |
| - <packaging>jar</packaging> |
16 |
| - |
17 |
| - <name>Powertools for AWS Lambda (Java) library Examples - Core</name> |
18 |
| ->>>>>>>> main:examples/powertools-examples-core/cdk/app/pom.xml |
19 | 10 |
|
20 | 11 | <properties>
|
21 | 12 | <log4j.version>2.20.0</log4j.version>
|
22 | 13 | <maven.compiler.source>1.8</maven.compiler.source>
|
23 | 14 | <maven.compiler.target>1.8</maven.compiler.target>
|
24 |
| -<<<<<<<< HEAD:examples/powertools-examples-core-utilities/sam/pom.xml |
25 | 15 | <aspectj.version>1.9.20</aspectj.version>
|
26 |
| -======== |
27 |
| ->>>>>>>> main:examples/powertools-examples-core/cdk/app/pom.xml |
28 | 16 | </properties>
|
29 | 17 |
|
30 | 18 | <dependencies>
|
|
51 | 39 | <dependency>
|
52 | 40 | <groupId>com.amazonaws</groupId>
|
53 | 41 | <artifactId>aws-lambda-java-events</artifactId>
|
54 |
| -<<<<<<<< HEAD:examples/powertools-examples-core-utilities/sam/pom.xml |
55 |
| - <version>3.11.2</version> |
56 |
| -======== |
57 | 42 | <version>3.11.3</version>
|
58 |
| ->>>>>>>> main:examples/powertools-examples-core/cdk/app/pom.xml |
59 | 43 | </dependency>
|
60 | 44 | <dependency>
|
61 | 45 | <groupId>org.apache.logging.log4j</groupId>
|
|
82 | 66 | </dependencies>
|
83 | 67 |
|
84 | 68 | <build>
|
85 |
| -<<<<<<<< HEAD:examples/powertools-examples-core-utilities/sam/pom.xml |
86 | 69 | <plugins>
|
87 | 70 | <plugin>
|
88 | 71 | <groupId>dev.aspectj</groupId>
|
|
148 | 131 | </dependencies>
|
149 | 132 | </plugin>
|
150 | 133 | </plugins>
|
151 |
| -======== |
152 |
| - <finalName>helloworld-lambda</finalName> |
153 |
| - <plugins> |
154 |
| - <plugin> |
155 |
| - <groupId>dev.aspectj</groupId> |
156 |
| - <artifactId>aspectj-maven-plugin</artifactId> |
157 |
| - <version>1.13.1</version> |
158 |
| - <configuration> |
159 |
| - <source>${maven.compiler.source}</source> |
160 |
| - <target>${maven.compiler.target}</target> |
161 |
| - <complianceLevel>${maven.compiler.target}</complianceLevel> |
162 |
| - <aspectLibraries> |
163 |
| - <aspectLibrary> |
164 |
| - <groupId>software.amazon.lambda</groupId> |
165 |
| - <artifactId>powertools-tracing</artifactId> |
166 |
| - </aspectLibrary> |
167 |
| - <aspectLibrary> |
168 |
| - <groupId>software.amazon.lambda</groupId> |
169 |
| - <artifactId>powertools-logging</artifactId> |
170 |
| - </aspectLibrary> |
171 |
| - <aspectLibrary> |
172 |
| - <groupId>software.amazon.lambda</groupId> |
173 |
| - <artifactId>powertools-metrics</artifactId> |
174 |
| - </aspectLibrary> |
175 |
| - </aspectLibraries> |
176 |
| - </configuration> |
177 |
| - <executions> |
178 |
| - <execution> |
179 |
| - <goals> |
180 |
| - <goal>compile</goal> |
181 |
| - </goals> |
182 |
| - </execution> |
183 |
| - </executions> |
184 |
| - </plugin> |
185 |
| - <plugin> |
186 |
| - <groupId>org.apache.maven.plugins</groupId> |
187 |
| - <artifactId>maven-shade-plugin</artifactId> |
188 |
| - <version>3.5.0</version> |
189 |
| - <executions> |
190 |
| - <execution> |
191 |
| - <phase>package</phase> |
192 |
| - <goals> |
193 |
| - <goal>shade</goal> |
194 |
| - </goals> |
195 |
| - <configuration> |
196 |
| - <transformers> |
197 |
| - <transformer implementation="org.apache.logging.log4j.maven.plugins.shade.transformer.Log4j2PluginCacheFileTransformer"/> |
198 |
| - </transformers> |
199 |
| - </configuration> |
200 |
| - </execution> |
201 |
| - </executions> |
202 |
| - <dependencies> |
203 |
| - <dependency> |
204 |
| - <groupId>org.apache.logging.log4j</groupId> |
205 |
| - <artifactId>log4j-transform-maven-shade-plugin-extensions</artifactId> |
206 |
| - <version>0.1.0</version> |
207 |
| - </dependency> |
208 |
| - </dependencies> |
209 |
| - </plugin> |
210 |
| - <!-- Don't deploy the example --> |
211 |
| - <plugin> |
212 |
| - <groupId>org.apache.maven.plugins</groupId> |
213 |
| - <artifactId>maven-deploy-plugin</artifactId> |
214 |
| - <configuration> |
215 |
| - <skip>true</skip> |
216 |
| - </configuration> |
217 |
| - </plugin> |
218 |
| - </plugins> |
219 |
| ->>>>>>>> main:examples/powertools-examples-core/cdk/app/pom.xml |
220 | 134 | </build>
|
221 | 135 | <profiles>
|
222 | 136 | <!-- Use a profile to enforce AspectJ version 1.9.7 if we are Java 1.8 otherwise we'll get class
|
|
0 commit comments