tree: 3d5343fa05b6445c9e45230b6963d0104e90e6f3 [path history] [tgz]
  1. src/
  2. .project
  3. about.html
  4. pom.xml
  5. rcptt.properties
  6. README.md
rcptt/org.eclipse.papyrus.tools.rcptt/README.md

org.eclipse.papyrus.tools.rcptt

The Papyrus Library to easily handle Rcptt

Status

License License

Repository structure

This repository is organized around logical software components:

  • src\main\context\*.ctx : Rcptt contexts (including ecl sripts).
  • src\main\testcase\*.test : Rcptt tests.
  • src\main\testsuite\*.suite : Rcptt suites.
  • src\main\verification\*.verification : Rcptt verifications.
  • about.html: EPL license.
  • .project: Eclipse configuration file (required in reusing a Rcptt library).

How to build

This project is built using Maven. To build locally, simply execute the command line:

mvn clean install

How to release

mvn release:perform

How to use

This artifact is deployed in the Eclipse Nexus instance.

  • Add the repository
		<repository>
			<id>repo.eclipse.org</id>
			<name>Papyrus
				Repository - Releases
			</name>
			<url>https://repo.eclipse.org/content/repositories/papyrus-releases/</url>
		</repository>
  • Add the dependency
    <dependencies>
	    <dependency>
	    	<groupId>org.eclipse.papyrus.tools</groupId>
			<artifactId>org.eclipse.papyrus.tools.rcptt</artifactId>
			<version>0.0.1</version>
    		<type>rcpttTest</type>
	    </dependency>
    </dependencies>