# tuist build gradle task list

Lists all tasks for a Gradle build.

## Arguments

### build-id

The ID of the Gradle build.

```bash
tuist build gradle task list [build-id]
```

### project `Optional`

The full handle of the project. Must be in the format of account-handle/project-handle.

```bash
tuist build gradle task list --project [project]
tuist build gradle task list -P [project]
```

### path `Optional`

The path to the directory or a subdirectory of the project.

```bash
tuist build gradle task list --path [path]
tuist build gradle task list -p [path]
```

### outcome `Optional`

Filter tasks by outcome (local_hit, remote_hit, up_to_date, executed, failed, skipped, no_source).

```bash
tuist build gradle task list --outcome [outcome]
```

### page `Optional`

The page number to fetch (1-indexed).

```bash
tuist build gradle task list --page [page]
```

### page-size `Optional`

The number of tasks per page. Defaults to 10.

```bash
tuist build gradle task list --page-size [page-size]
```

### json `Optional`

The output in JSON format.

```bash
tuist build gradle task list --json
```
