Quantcast
Channel: Apache Timeline
Viewing all articles
Browse latest Browse all 5648

Certificate problem with hostet Nexus

$
0
0
Hey guys,

I have deployed the core.jar from processing.org to my own hostest nexus
repository
(https://nexus.cedarsoft.com/content/repositories/processing/org/processing/core/2.2.1/).

I have the following pom[1].
Running "mvn install" gives this output
[2]:"java.security.cert.CertificateExpiredException: NotAfter: Thu Oct
31 06:13:55 CET 2013"

I tried it on two different computers, same problem.
I am using Java 1.8.0_25 and Maven 3.2.3 using Linux.
I am using a startssl.com certificate. But I don't think this should be
a problem, since I have other repositories (maven central mirror) that
work fine.

Any ideas?

Thanks,

Johannes

[1]

<?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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>com.cedarsoft</groupId>
<artifactId>processing-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<description>Processing Sample</description>

<repositories>
<repository>
<id>processing-repo</id>

<url>https://nexus.cedarsoft.com/content/repositories/processing</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.processing</groupId>
<artifactId>core</artifactId>
<version>2.2.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>

[2]

[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]

[INFO]

Viewing all articles
Browse latest Browse all 5648

Trending Articles