164 lines
		
	
	
		
			6.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			164 lines
		
	
	
		
			6.9 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>machine-learning</artifactId>
 | |
|     <version>1.0-SNAPSHOT</version>
 | |
|     <name>Supervised Learning</name>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.jetbrains.kotlin</groupId>
 | |
|             <artifactId>kotlin-stdlib-jdk8</artifactId>
 | |
|             <version>${kotlin.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.nd4j</groupId>
 | |
|             <artifactId>nd4j-native-platform</artifactId>
 | |
|             <version>${dl4j.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.deeplearning4j</groupId>
 | |
|             <artifactId>deeplearning4j-core</artifactId>
 | |
|             <version>${dl4j.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.jetbrains.kotlin</groupId>
 | |
|             <artifactId>kotlin-stdlib-jdk8</artifactId>
 | |
|             <version>${kotlin.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.jetbrains.kotlin</groupId>
 | |
|             <artifactId>kotlin-test</artifactId>
 | |
|             <version>${kotlin.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.jetbrains.kotlin</groupId>
 | |
|             <artifactId>kotlin-stdlib-jdk8</artifactId>
 | |
|             <version>${kotlin.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <sourceDirectory>src/main/kotlin</sourceDirectory>
 | |
|         <testSourceDirectory>src/test</testSourceDirectory>
 | |
|         <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
 | |
|             <plugins>
 | |
|                 <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-clean-plugin</artifactId>
 | |
|                     <version>${clean.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-resources-plugin</artifactId>
 | |
|                     <version>${resources.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-compiler-plugin</artifactId>
 | |
|                     <version>${compiler.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-surefire-plugin</artifactId>
 | |
|                     <version>${surefire.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-jar-plugin</artifactId>
 | |
|                     <version>${jar.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-install-plugin</artifactId>
 | |
|                     <version>${install.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-deploy-plugin</artifactId>
 | |
|                     <version>${deploy.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-site-plugin</artifactId>
 | |
|                     <version>${site.plugin.version}</version>
 | |
|                 </plugin>
 | |
|                 <plugin>
 | |
|                     <artifactId>maven-project-info-reports-plugin</artifactId>
 | |
|                     <version>${report.plugin.version}</version>
 | |
|                 </plugin>
 | |
|             </plugins>
 | |
|         </pluginManagement>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.jetbrains.kotlin</groupId>
 | |
|                 <artifactId>kotlin-maven-plugin</artifactId>
 | |
|                 <version>${kotlin.version}</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>compile</id>
 | |
|                         <phase>compile</phase>
 | |
|                         <goals>
 | |
|                             <goal>compile</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                     <execution>
 | |
|                         <id>test-compile</id>
 | |
|                         <phase>test-compile</phase>
 | |
|                         <goals>
 | |
|                             <goal>test-compile</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|                 <configuration>
 | |
|                     <jvmTarget>1.8</jvmTarget>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>compile</id>
 | |
|                         <phase>compile</phase>
 | |
|                         <goals>
 | |
|                             <goal>compile</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                     <execution>
 | |
|                         <id>testCompile</id>
 | |
|                         <phase>test-compile</phase>
 | |
|                         <goals>
 | |
|                             <goal>testCompile</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <maven.compiler.source>1.7</maven.compiler.source>
 | |
|         <maven.compiler.target>1.7</maven.compiler.target>
 | |
|         <kotlin.version>1.3.50</kotlin.version>
 | |
|         <dl4j.version>0.9.1</dl4j.version>
 | |
|         <clean.plugin.version>3.1.0</clean.plugin.version>
 | |
|         <resources.plugin.version>3.0.2</resources.plugin.version>
 | |
|         <jar.plugin.version>3.0.2</jar.plugin.version>
 | |
|         <compiler.plugin.version>3.8.0</compiler.plugin.version>
 | |
|         <surefire.plugin.version>2.22.1</surefire.plugin.version>
 | |
|         <install.plugin.version>2.5.2</install.plugin.version>
 | |
|         <deploy.plugin.version>2.8.2</deploy.plugin.version>
 | |
|         <site.plugin.version>3.7.1</site.plugin.version>
 | |
|         <report.plugin.version>3.0.0</report.plugin.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |