Moving NonCapturingGroupUnitTestjava to new core-java-regex-2 module.

This commit is contained in:
bhandy 2021-06-12 00:25:19 -04:00
parent c7326c23ca
commit be18bad873
3 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>core-java-regex-2</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>core-java-regex-2</name>
<packaging>jar</packaging>
<parent>
<groupId>com.baeldung.core-java-modules</groupId>
<artifactId>core-java-modules</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<assertj-core.version>3.15.0</assertj-core.version>
</properties>
</project>

View File

@ -114,6 +114,7 @@
<module>core-java-string-operations-3</module>
<module>core-java-sun</module>
<module>core-java-regex</module>
<module>core-java-regex-2</module>
<module>pre-jpms</module>
</modules>
@ -138,4 +139,4 @@
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<junit-jupiter.version>5.6.2</junit-jupiter.version>
</properties>
</project>
</project>