Submitting a new package OBS-URL: https://build.opensuse.org/request/show/1265634 OBS-URL: https://build.opensuse.org/package/show/Java:packages/testng-engine?expand=0&rev=1
59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
<!-- which should be used instead. Do not delete the following line which -->
|
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
<!-- that they should prefer consuming it instead. -->
|
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.junit.support</groupId>
|
|
<artifactId>testng-engine</artifactId>
|
|
<version>1.0.5</version>
|
|
<name>TestNG Engine for the JUnit Platform</name>
|
|
<description>Allows executing TestNG tests on the JUnit Platform</description>
|
|
<url>https://junit.org/junit5/</url>
|
|
<licenses>
|
|
<license>
|
|
<name>Eclipse Public License v2.0</name>
|
|
<url>https://www.eclipse.org/legal/epl-v20.html</url>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>junit-team</id>
|
|
<name>JUnit team</name>
|
|
<email>team@junit.org</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git:git://github.com/junit-team/testng-engine.git</connection>
|
|
<developerConnection>scm:git:git://github.com/junit-team/testng-engine.git</developerConnection>
|
|
<url>https://github.com/junit-team/testng-engine</url>
|
|
</scm>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit</groupId>
|
|
<artifactId>junit-bom</artifactId>
|
|
<version>5.7.2</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit.platform</groupId>
|
|
<artifactId>junit-platform-engine</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.testng</groupId>
|
|
<artifactId>testng</artifactId>
|
|
<version>6.14.3</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|