2020-08-17 19:33:14 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 22:27:07 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-08-17 19:33:14 +05:30
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.exceptions</groupId>
|
|
|
|
<artifactId>core-java-exceptions-3</artifactId>
|
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
|
|
<name>core-java-exceptions-3</name>
|
|
|
|
<packaging>jar</packaging>
|
2021-05-06 22:27:07 +05:30
|
|
|
|
2020-08-17 19:33:14 +05:30
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-10-21 22:39:43 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2021-11-16 15:10:49 +01:00
|
|
|
<version>${h2.version}</version>
|
2020-10-21 22:39:43 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-08-17 19:33:14 +05:30
|
|
|
</dependencies>
|
|
|
|
|
2021-12-28 22:36:17 +05:30
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgs>
|
2022-05-08 16:36:25 +05:30
|
|
|
<!-- Comment the arg below to print complete stack trace information -->
|
|
|
|
<!-- <arg>-g:none</arg> -->
|
2021-12-28 22:36:17 +05:30
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-08-17 19:33:14 +05:30
|
|
|
<properties>
|
2021-11-16 15:10:49 +01:00
|
|
|
<h2.version>1.4.191</h2.version>
|
2020-08-17 19:33:14 +05:30
|
|
|
</properties>
|
2021-09-20 00:04:26 +05:30
|
|
|
|
2021-05-06 22:27:07 +05:30
|
|
|
</project>
|