আমি নেটবিনে একটি মাভেন কোড লিখেছি যার প্রায় 2000 টিরও বেশি লাইন রয়েছে। আমি যখন এটি নেটবিনে সংকলন করি তখন সমস্ত কিছু ঠিকঠাক হয় তবে আমি যদি এটি কমান্ড লাইনে চালাতে চাই তবে আমি এই ত্রুটিগুলি পেয়ে যাব:
generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
ArrayList<ArrayList<Integer>> list = new ArrayList<ArrayList<Integer>>();
generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
HashSet<Double> resid_List = new HashSet<Double>(Arrays.asList(resid_val));
generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
List<Integer> ind_ovlpList = new ArrayList<Integer>(Arrays.asList(ind_ovlp));
generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
public class ColumnComparator implements Comparator<double[]> {
annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations)
@Override
আমি জাভা 1.3.1, সংকলক ত্রুটি ব্যবহার করার চেষ্টা করেছি , তবে আমি আরও ত্রুটি পেয়েছি। আমি অন্যান্য পোস্ট থেকে খুঁজে পেয়েছি যে আমার pom.xML পরিবর্তন করা উচিত, তবে কীভাবে তা আমি জানি না। এখানে আমার pom.xML
<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>
<groupId>com.mycompany</groupId>
<artifactId>mavenmain</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>mavenmain</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>gov.nist.math</groupId>
<artifactId>jama</artifactId>
<version>1.0.2</version>
</dependency>
</dependencies>
</project>
আপনি যদি আমাকে সাহায্য করতে পারেন তবে দুর্দান্ত হবে।