• Home
Name Date Size #Lines LOC

..--

android-src/java/org/testng/internal/03-May-2024-256

ant/03-May-2024-897605

bin/03-May-2024-3823

doc/03-May-2024-9,2417,430

eclipse-projects/03-May-2024-566519

gradle/03-May-2024-238197

kobalt/03-May-2024-6649

lib-supplied/03-May-2024-

maven/03-May-2024-7456

pictures/03-May-2024-40

src/03-May-2024-82,48256,818

www/03-May-2024-98

.classpathD03-May-20241.1 KiB2928

.classpath-linuxD03-May-2024582 1211

.classpath-macD03-May-2024582 1211

.gitignoreD03-May-2024324 2827

.mailmapD03-May-2024699 1413

.projectD03-May-2024583 2524

.travis.ymlD03-May-2024295 139

ANNOUNCEMENT.txtD03-May-20244.3 KiB11165

Android.mkD03-May-20243.6 KiB9741

CHANGES.txtD03-May-202461.4 KiB1,2601,042

CHECKLISTD03-May-2024136 118

CleanSpec.mkD03-May-20242.5 KiB540

FILESD03-May-2024192 1211

GenerateTemplates.mkD03-May-20241.8 KiB4314

LICENSE.txtD03-May-202411.1 KiB202169

MODULE_LICENSE_APACHE2D03-May-20240

NOTESD03-May-20242.2 KiB3927

NOTICED03-May-202411.1 KiB202169

READMED03-May-2024470 138

README-publishD03-May-2024672 107

README.buildD03-May-2024237 84

README.devD03-May-2024946 3728

README.mdD03-May-20241.5 KiB1210

README.versionD03-May-2024129 54

TESTNG-5.11betaD03-May-20240

TODO.txtD03-May-20247.2 KiB161136

appveyor.ymlD03-May-2024489 2519

build-with-gradleD03-May-202449 21

build-with-mavenD03-May-2024935 2617

build.gradleD03-May-20244.6 KiB178147

bundle-pom.xmlD03-May-20242.1 KiB6047

deploy-to-mavenD03-May-2024237 1511

generate-version-fileD03-May-20242 KiB6029

gradlewD03-May-20245 KiB165122

gradlew.batD03-May-20242.3 KiB9166

kobaltwD03-May-202481 31

pom.xmlD03-May-202411.9 KiB420348

settings.gradleD03-May-202428 21

sitemap.xmlD03-May-20241.1 KiB6544

testng-1.0.dtd.htmlD03-May-2024232 96

testng-1.0.dtd.phpD03-May-20241.6 KiB4737

travis.shD03-May-2024281 119

update-beust.comD03-May-2024712 2713

upload-betaD03-May-2024164 53

verify-releaseD03-May-20241.1 KiB4635

README

1[![Build Status](https://travis-ci.org/cbeust/testng.svg)](https://travis-ci.org/cbeust/testng)
2
3Welcome to TestNG 6.8beta
4
5Please note that even though the .zip distribution contains the TestNG sources,
6you will not be able to build the software with them because we decided
7not to include the external jar files in order to keep the size down.
8
9If you want to build TestNG, please sync to the GitHub repository at https://github.com/cbeust/testng.
10
11--
12The TestNG team
13

README-publish

1To publish:
2
3- ./gradlew bintrayUpload will upload the release to JCenter. It will fail if the version is a SNAPSHOT
4- ./gradlew uploadArchives will upload
5  - the snapshot to https://oss.sonatype.org/content/repositories/snapshots
6  - the release to https://oss.sonatype.org/service/local/staging/deploy/maven2
7For a release, you then need to go to https://oss.sonatype.org/index.html#stagingRepositories to manually close and release the distribution.
8
9Note that `./gradlew uploadArchives` is run by Travis after each new push to deploy the latest HEAD to the snapshot directory. As such, the version number of `build.gradle` in the git repo should always be -SNAPSHOT.
10

README.build

1You need to install ivy in order to build.
2
3You can either download it from the ivy site or more simply,
4copy ivy-2.1.0.jar included in the root directory to ~/.ant/lib.
5
6After this, "ant" will build the distribution and run the tests.
7
8

README.dev

1New installation:
2
3Install GPG at http://www.gpgtools.org/gpgmail/index.html
4Generate new key with gpg --gen-key
5build-with-maven
6gpg --list-keys
7Send the public key:
8  gpg --keyserver hkp://pool.sks-keyservers.net --send-keys <public_key>
9  or wwwkeys.at.pgp.net
10
11
12  instructions at https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven
13
14
15Configure ~/.m2/settings.xml with Nexus user/password:
16
17  <settings>
18    <servers>
19      <server>
20        <id>sonatype-nexus-snapshots</id>
21        <username>***</username>
22        <password>***</password>
23      </server>
24      <server>
25        <id>sonatype-nexus-staging</id>
26        <username>***</username>
27        <password>***</password>
28      </server>
29    </servers>
30  </settings>
31
32Snaphot deploy:
33mvn -Dgpg.passphrase= -Dgpg.keyname=<public_key> deploy
34
35Staging deploy:
36mvn -Dgpg.passphrase= -Dgpg.keyname=<public_key> release:clean release:prepare release:perform
37

README.md

1[![Build Status](http://img.shields.io/travis/cbeust/testng.svg)](https://travis-ci.org/cbeust/testng)
2[![Java9 EA Build Status](https://img.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG.svg?label="Java9 EA")](https://adopt-openjdk.ci.cloudbees.com/job/TestNG)
3[![Java9 Jigsaw EA Build Status](https://img.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG-Jigsaw.svg?label="Java9 Jigsaw")](https://adopt-openjdk.ci.cloudbees.com/job/TestNG-Jigsaw)
4[![AppVeyor](https://ci.appveyor.com/api/projects/status/github/cbeust/testng?svg=true)](https://ci.appveyor.com/project/cbeust/testng)
5[![Dependency Status](https://www.versioneye.com/user/projects/553a031c4e5d2e9408000059/badge.svg)](https://www.versioneye.com/user/projects/553a031c4e5d2e9408000059)
6[![Reference Status](https://www.versioneye.com/java/org.testng:testng/reference_badge.svg)](https://www.versioneye.com/java/org.testng:testng/references)
7[![Maven Central](https://img.shields.io/maven-central/v/org.testng/testng.svg)](https://maven-badges.herokuapp.com/maven-central/org.testng/testng)
8[![License](https://img.shields.io/github/license/cbeust/testng.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
9[![Sonarqube tech debt](https://img.shields.io/sonar/http/nemo.sonarqube.org/org.testng:testng/tech_debt.svg?label=Sonarqube%20tech%20debt)](http://nemo.sonarqube.org/dashboard/index?id=org.testng:testng)
10
11Documentation available at [TestNG's main web site](http://testng.org).
12

README.version

1URL: https://github.com/cbeust/testng
2Version: 6.9.10 (ee3c614707d7b5cbcd8e13b93f0a8402c554f8f6)
3BugComponent: 99142
4Owners: iam
5