Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ jobs:
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Dependency Review
uses: StacklokLabs/trusty-dependency-review-action@add_trusty_scores
with:
trusty-scores: true
comment-summary-in-pr: always
trusty-show: 10
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# DepRevTest
Dependency Review Test
This has almost empty projects in it.
* Go
* Node
* Python
* Maven

To see results, look at the actions https://github.com/StacklokLabs/DepRevTest/actions/runs/9078025575.
7 changes: 6 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@ module StacklokLabs/DevRepTest

go 1.20

require github.com/gorilla/mux v1.8.1

require (
github.com/gorilla/mux v1.8.1
github.com/ThreeDotsLabs/watermill v1.3.5
github.com/alexdrl/zerowater v0.0.3
)
11 changes: 4 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,14 @@
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/request-error": "^5.0.1",
"@types/jest": "^29.5.12",
"ansi-styles": "^6.2.1",
"bluebird": "^3.7.2",
"got": "^14.2.0",
"jest": "^29.7.0",
"octokit": "^3.1.2",
"got": "^14.2.1",
"jest": "^29.7.1",
"octokit": "^3.1.3",
"spdx-expression-parse": "^3.0.1",
"spdx-satisfies": "^5.0.1",
"ts-jest": "^29.1.2",
"yaml": "^2.3.4",
"bugsnagmw": "1.0.3",
"zod": "^3.22.3"
}
}
38 changes: 38 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<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.example</groupId>
<artifactId>my-app</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.4</version>
</parent>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.5.4</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.5.4</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
58 changes: 58 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
[project]
name = "testy"
version = "0.0.1"
description = "Testy"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "Apache License"}
keywords = ["security", "development"]
authors = [
{name = "N Brown", email = "[email protected]" }
]

maintainers = [
{name = "N Brown", email = "[email protected]" }
]

classifiers = [
"Development Status :: 3 - Alpha",

# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",

# Pick your license as you wish
"License :: OSI Approved :: Apache License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]

dependencies = [
'Authlib==1.3.0',
'boto3==1.34.102',
'uvicorn==0.29.1',
'slowapi==0.1.9',
'pyarrow==16.0.0',
'google-cloud-storage==2.16.0',
]

[project.optional-dependencies]
dev = ["pytest", "flake8", "SQLAlchemy", "pytest-asyncio"]
test = ["pytest", "flake8", "SQLAlchemy", "pytest-asyncio"]

[project.urls]
"Homepage" = "https://github.com/stacklok/Testy"
"Source" = "https://github.com/stacklok/Testy"

[project.scripts]
server = "main:runlocal"


[tool.setuptools]
packages = ["src"]

[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"