2020-03-15 08:52:24 -04:00
|
|
|
<project
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
2019-12-11 13:42:31 -05:00
|
|
|
|
2020-03-15 08:52:24 -04:00
|
|
|
<artifactId>core-java-exceptions-2</artifactId>
|
|
|
|
<name>core-java-exceptions-2</name>
|
|
|
|
<packaging>jar</packaging>
|
2019-12-11 13:42:31 -05:00
|
|
|
|
2020-03-15 08:52:24 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-java</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-java</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- test scoped -->
|
|
|
|
<dependency>
|
2020-01-24 14:24:35 -05:00
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj-core.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-03-15 08:52:24 -04:00
|
|
|
</dependencies>
|
2019-12-11 13:42:31 -05:00
|
|
|
|
2020-03-15 08:52:24 -04:00
|
|
|
<description> </description>
|
|
|
|
<url>http://maven.apache.org</url>
|
2019-12-11 13:42:31 -05:00
|
|
|
|
2020-03-15 08:52:24 -04:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<!-- testing -->
|
|
|
|
<assertj-core.version>3.10.0</assertj-core.version>
|
|
|
|
</properties>
|
2019-12-11 13:42:31 -05:00
|
|
|
|
|
|
|
</project>
|