Дженкинсу не удалось сгенерировать отчет Allure с ошибкой «ExportException: порт уже используется» - PullRequest
0 голосов
/ 08 октября 2019

Я запускаю Jenkins на Tomcat, который локально работает на моем компьютере (Windows). Настройки сервера Tomcat: HTTP-порт = 8080;Порт JMX = 9999. AllureCommandline версия 2.13.0. Я настроил задание с помощью простого теста, после которого должен быть создан отчет об очаровании, но вместо этого выдается исключение AllurePluginException: Can not generate Allure Report, exit code: 1 с подробностями

[job] $ C: \ Users \ xxxx \ .jenkins\ tools \ ru.yandex.qatools.allure.jenkins.tools.AllureCommandlineInstallation \ allure1 \ bin \ allure.bat создает C: \ Users \ xxxx \ .jenkins \ workspace \ job \ target \ allure-results -c -o C:\ Users \ xxxx \ .jenkins \ workspace \ job \ target \ allure-report Ошибка: исключение, сгенерированное агентом: java.rmi.server.ExportException: порт уже используется: 9999;Вложенное исключение: java.net.BindException: Адрес уже используется: JVM_Bind

Если я изменю порт JMX, произойдет сбой с точно таким же исключением, говорящим о том, что порт новый используется.

Файл pom:

  <properties>
    <allure.version>1.5.4</allure.version>
    <aspectj.version>1.9.4</aspectj.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>ru.yandex.qatools.allure</groupId>
      <artifactId>allure-junit-adaptor</artifactId>
      <version>${allure.version}</version>
    </dependency>
    <dependency>
      <groupId>com.codeborne</groupId>
      <artifactId>selenide</artifactId>
      <version>5.2.6</version>
    </dependency>
    <dependency>
      <groupId>com.codeborne</groupId>
      <artifactId>pdf-test</artifactId>
      <version>1.5.1</version>
    </dependency>
    <dependency>
      <groupId>com.codeborne</groupId>
      <artifactId>xls-test</artifactId>
      <version>1.4.1</version>
    </dependency>
  </dependencies>

  <build>
    <defaultGoal>dependency:copy-dependencies</defaultGoal>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-archetype-plugin</artifactId>
        <version>3.1.1</version>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.1</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.22.2</version>
        <configuration>
          <testFailureIgnore>false</testFailureIgnore>
          <argLine>
            -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
          </argLine>
          <properties>
            <property>
              <name>listener</name>
              <value>ru.yandex.qatools.allure.junit.AllureRunListener</value>
            </property>
          </properties>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>${aspectj.version}</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>

  <reporting>
    <excludeDefaults>true</excludeDefaults>
    <plugins>
      <plugin>
        <groupId>ru.yandex.qatools.allure</groupId>
        <artifactId>allure-maven-plugin</artifactId>
        <version>2.6</version>
      </plugin>
    </plugins>
  </reporting>

Может кто-нибудь дать подсказку, что я могу попробовать еще?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...