- Added "name" in pom.xml whereever it was missing and aligned the present ones with the artifactid and foldername
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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>liquibase</artifactId>
 | |
| 	<name>liquibase</name>
 | |
| 
 | |
|     <parent>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|         <relativePath>../../</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>mysql</groupId>
 | |
|             <artifactId>mysql-connector-java</artifactId>
 | |
|             <version>${mysql-connector-java.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <finalName>liquibase</finalName>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.liquibase</groupId>
 | |
|                 <artifactId>liquibase-maven-plugin</artifactId>
 | |
|                 <version>${liquibase-maven-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <propertyFile>liquibase/liquibase.properties</propertyFile>
 | |
|                     <changeLogFile>liquibase/db-changelog.xml</changeLogFile>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <mysql-connector-java.version>5.1.6</mysql-connector-java.version>
 | |
|         <liquibase-maven-plugin.version>3.4.2</liquibase-maven-plugin.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |