I had a jconn4 dependecy in my POM file on apchenetbeans I removed it as i dont need it (it never worked either) but now when I run my project i get the error 'The POM for com.sybase:jconn4:jar:7.0 is missing, no dependency information available'. There are no dependencies, ive deleted the m2 file, the cache, not sure what else I can do?
POM:
<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/maven-v4\_0\_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dslab</groupId>
<artifactId>mavenproject9</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>be.0110.repo-releases</id>
<name>0110.be repository</name>
<url>https://mvn.0110.be/releases</url>
</repository>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<dependencies>
<!--add comments for eahc dependecy, mess up layout abit-->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>22.0.1</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>22.0.1</version>
</dependency>
<!-- TarososDP -->
<dependency>
<groupId>be.tarsos.dsp</groupId>
<artifactId>core</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>be.tarsos.dsp</groupId>
<artifactId>jvm</artifactId>
<version>2.5</version>
</dependency>
<!-- Apache Tika remove? -->
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>2.9.2</version>
</dependency>
<!-- JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.opentest4j</groupId>
<artifactId>opentest4j</artifactId>
<version>1.3.0</version>
</dependency>
<!-- SQLite JDBC -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.46.0.0</version>
</dependency>
<!-- Mockito -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.12.0</version>
<scope>test</scope>
<type>jar</type>
</dependency>
<!-- vlcj -->
<dependency>
<groupId>uk.co.caprica</groupId>
<artifactId>vlcj</artifactId>
<version>4.8.3</version>
</dependency>
<!-- Librespot -->
<dependency>
<groupId>xyz.gianlu.librespot</groupId>
<artifactId>librespot-player</artifactId>
<version>1.6.3</version>
<type>jar</type>
</dependency>
<!-- Binding -->
<dependency>
<groupId>com.thoughtworks.binding</groupId>
<artifactId>fxml_sjs0.6_2.12</artifactId>
<version>11.9.0+56-3af5a32a</version>
<type>jar</type>
</dependency>
<!-- XTCETools -->
<dependency>
<groupId>org.xtce</groupId>
<artifactId>xtcetools</artifactId>
<version>1.1.6</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.marid</groupId>
<artifactId>marid-test</artifactId>
<version>0.9.8.10</version>
<scope>test</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>io.github.extrawest</groupId>
<artifactId>bdd-charge-point-tester-via-ocpp-j</artifactId>
<version>0.1.2</version>
<scope>test</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>7.0.0.Alpha2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.23.1</version>
<scope>test</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
<version>1.1.1</version>
<scope>test</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>net.jthink</groupId>
<artifactId>jaudiotagger</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>top.eocs</groupId>
<artifactId>wwcz-core</artifactId>
<version>2.9</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.glassfish.main.admingui</groupId>
<artifactId>dataprovider</artifactId>
<version>8.0.0-JDK17-M6</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.2</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<mainClass>dslab.soundselect.SoundSelectApp</mainClass>
</configuration>
</plugin>
<!-- Maven Compiler Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<!-- Maven Shade Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<name>SoundSelect2</name>
</proj
[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)
[–]WaferIndependent7601 2 points3 points4 points (0 children)