GithubHelp home page GithubHelp logo

Comments (6)

PePeLM avatar PePeLM commented on May 20, 2024

Ok, i found out the problem it was my pom config and maven goal in jenkins.

from allure1.

sseliverstov avatar sseliverstov commented on May 20, 2024

@PePeLM, do you know that we have next version? Source https://github.com/allure-framework/allure2, docs: https://docs.qameta.io/allure/latest/. Try it!

from allure1.

PePeLM avatar PePeLM commented on May 20, 2024

@sseliverstov, when it will be available in maven central repo?

from allure1.

eroshenkoam avatar eroshenkoam commented on May 20, 2024

You need to configure testng integration like here:
https://github.com/allure-examples/allure-testng-example/blob/master/pom.xml

from allure1.

eroshenkoam avatar eroshenkoam commented on May 20, 2024
    <dependencies>
        ...
        <dependency>
            <groupId>io.qameta.allure</groupId>
            <artifactId>allure-testng</artifactId>
            <version>2.0-BETA10</version>
            <scope>test</scope>
        </dependency>
       ...
    </dependencies>

from allure1.

eroshenkoam avatar eroshenkoam commented on May 20, 2024
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.18.1</version>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                    <argLine>
                        -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
                    </argLine>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjweaver</artifactId>
                        <version>${aspectj.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>

from allure1.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.