79 lines
2.9 KiB
XML
79 lines
2.9 KiB
XML
|
|
<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/xsd/maven-4.0.0.xsd">
|
||
|
|
<parent>
|
||
|
|
<artifactId>javaparser-parent</artifactId>
|
||
|
|
<groupId>com.github.javaparser</groupId>
|
||
|
|
<version>3.27.0</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>javaparser-core-testing-bdd</artifactId>
|
||
|
|
<description>The BDD test suite for javaparser-core</description>
|
||
|
|
|
||
|
|
<licenses>
|
||
|
|
<license>
|
||
|
|
<name>GNU Lesser General Public License</name>
|
||
|
|
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
|
||
|
|
<distribution>repo</distribution>
|
||
|
|
</license>
|
||
|
|
<license>
|
||
|
|
<name>Apache License, Version 2.0</name>
|
||
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||
|
|
<distribution>repo</distribution>
|
||
|
|
<comments>A business-friendly OSS license</comments>
|
||
|
|
</license>
|
||
|
|
</licenses>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.jacoco</groupId>
|
||
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<!-- no need to release this module -->
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<reportFormat>plain</reportFormat>
|
||
|
|
<failIfNoTests>true</failIfNoTests>
|
||
|
|
<argLine>@{jacoco.javaagent}</argLine>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.javaparser</groupId>
|
||
|
|
<artifactId>javaparser-core</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.junit.jupiter</groupId>
|
||
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.junit.vintage</groupId>
|
||
|
|
<artifactId>junit-vintage-engine</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jbehave</groupId>
|
||
|
|
<artifactId>jbehave-core</artifactId>
|
||
|
|
<version>5.2.0</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.hamcrest</groupId>
|
||
|
|
<artifactId>hamcrest</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|