Initial folder setup
This commit is contained in:
Ashish Trivedi 2020-07-19 15:30:30 +05:30
parent 61dfa50822
commit 58b98c54e5
2 changed files with 19 additions and 1 deletions

View File

@ -192,6 +192,7 @@
<module>leader-followers</module>
<module>strangler</module>
<module>arrange-act-assert</module>
<module>transaction-script</module>
</modules>
<repositories>
@ -377,6 +378,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<!--suppress UnresolvedMavenProperty -->
<argLine>-Xmx1024M ${argLine}</argLine>
</configuration>
</plugin>
@ -474,6 +476,7 @@
</properties>
<skipExistingHeaders>true</skipExistingHeaders>
<headerDefinitions>
<!--suppress UnresolvedMavenProperty -->
<headerDefinition>${projectRoot}${file.separator}license-plugin-header-style.xml</headerDefinition>
</headerDefinitions>
<mapping>
@ -550,4 +553,4 @@
</plugins>
</reporting>
</project>
</project>

View File

@ -0,0 +1,15 @@
<?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">
<parent>
<artifactId>java-design-patterns</artifactId>
<groupId>com.iluwatar</groupId>
<version>1.23.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>transaction-script</artifactId>
</project>