Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.39 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.39 KB

Cogswell test tool

This is the Cogswell test tool written in Java.

To Build

This project uses gradle: everything you need to run gradle will be automatically downloaded the first time you run gradlew. NOTE: You'll need to change directory to the directory you downloaded the project to before you launch gradlew from the command line.

Linux:

./gradlew build

Windows:

gradlew.bat build

If you do not use gradle, or are also updating the tools or sdk, you'll need to reference these projects:

Specifying a custom version number

You may specify a build number using the environment variable BUILD_NUMBER, otherwise a default dev buil number will be used. For example, in OSX or Linux:

BUILD_NUMBER=12345 ./gradlew build

To Launch:

After you have run the gradle build, a compressed file will be added to build/distributions.

In Windows:

  1. Unzip build/distributions/cogs-java-example-app-(version).zip
  2. Double click on cogs-java-example-app-(version)/bin/cogs-java-example-app.bat

Under OSX or Linux:

  1. cd build/distributions
  2. tar xvf cogs-java-example-app-1.0.15.tar
  3. cogs-java-example-app-(version)/bin/cogs-java-example-app

IntelliJ IDEA

If you open these in IntelliJ IDEA, in the "Import Project from Gradle" dialog, select "Use customizable gradle wrapper".