-
Bug
-
Resolution: Obsolete
-
Major
-
None
-
JBoss A-MQ 6.3
-
None
When using the activemq-perf-maven module I get an exception that the module org.jasypt:jasypt:jar:1.9.3.redhat_3 can't be found:
[ERROR] Failed to execute goal org.apache.activemq.tooling:activemq-perf-maven-plugin:5.11.0.redhat-630187:consumer (default-cli) on project activemq-perf-test: Execution default-cli of goal org.apache.activemq.tooling:activemq-perf-maven-plugin:5.11.0.redhat-630187:consumer failed: Plugin org.apache.activemq.tooling:activemq-perf-maven-plugin:5.11.0.redhat-630187 or one of its dependencies could not be resolved: Could not find artifact org.jasypt:jasypt:jar:1.9.3.redhat_3 in jboss-ga-plugin-repository (https://maven.repository.redhat.com/ga) -> [Help 1]
I have fixed it by using an older version of this dependency like this:
<?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.redhat</groupId>
<artifactId>activemq-perf-test</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<name>ActiveMQ Performance Test</name>
<url>http://www.redhat.com</url>
<properties>
<activemq.version>5.11.0.redhat-630187</activemq.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.activemq.tooling</groupId>
<artifactId>activemq-perf-maven-plugin</artifactId>
<version>${activemq.version}</version>
<configuration>
<sysTest.propsConfigFile>${project.basedir}/src/main/resources/perf-test-persistent-transacted.properties</sysTest.propsConfigFile>
</configuration>
<dependencies>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>1.9.1.redhat-1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
Can you have a look if this artifact was missed during the upload to Nexus?
Thanks a lot,
Jochen