- Added "name" in pom.xml whereever it was missing and aligned the present ones with the artifactid and foldername
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.8 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>core-scala</artifactId>
 | |
|     <version>1.0-SNAPSHOT</version>
 | |
|     <name>core-scala</name>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.scala-lang</groupId>
 | |
|             <artifactId>scala-library</artifactId>
 | |
|             <version>${scala.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <sourceDirectory>src/main/scala</sourceDirectory>
 | |
|         <testSourceDirectory>src/test/scala</testSourceDirectory>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>net.alchim31.maven</groupId>
 | |
|                 <artifactId>scala-maven-plugin</artifactId>
 | |
|                 <version>3.3.2</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <goals>
 | |
|                             <goal>compile</goal>
 | |
|                             <goal>testCompile</goal>
 | |
|                         </goals>
 | |
|                         <configuration>
 | |
|                             <args>
 | |
|                                 <arg>-dependencyfile</arg>
 | |
|                                 <arg>${project.build.directory}/.scala_dependencies</arg>
 | |
|                             </args>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <scala.version>2.12.7</scala.version>
 | |
|     </properties>
 | |
| </project>
 | |
| 
 |