Compare commits

...

No commits in common. "c8" and "c8s" have entirely different histories.
c8 ... c8s

8 changed files with 69 additions and 2 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/json-simple-1.1.1-src-svn.tar.gz /json-simple-1.1.1-src-svn.tar.gz

View File

@ -1 +0,0 @@
169501b8b7ade2f5f58a9c65eba2b6fc34dffbbb SOURCES/json-simple-1.1.1-src-svn.tar.gz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (json-simple-1.1.1-src-svn.tar.gz) = 70a3292a16c9c2c4d889accfacb553d54b1f6482a5040523a332140874400d5bf9dc317ee60a71624b42010caf9b415e40c201b8ed130bcf2b58d342180cf784

46
tests/pom.xml Normal file
View File

@ -0,0 +1,46 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple-tests</artifactId>
<packaging>pom</packaging>
<name>JSON.simple</name>
<version>1.1.1</version>
<description>A simple Java toolkit for JSON - Tests</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<dependenciesToScan>
<dependency>com.googlecode.json-simple:json-simple</dependency>
</dependenciesToScan>
</configuration>
</plugin>
</plugins>
</build>
</project>

15
tests/tests.yml Normal file
View File

@ -0,0 +1,15 @@
---
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
required_packages:
- json_simple
- json_simple-tests
- maven-local
tests:
- xmvn_installed_rpm_surefire:
dir: .
run: "xmvn surefire:test"