Skip to content

Commit

Permalink
feat(): REUSE workflow + add missing license
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimGl committed Aug 12, 2024
1 parent c1b793a commit 7b68d7d
Show file tree
Hide file tree
Showing 18 changed files with 149 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: REUSE Compliance Check

on:
push:
branches:
- main
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v4
8 changes: 8 additions & 0 deletions chutney/action-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>action-impl</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>com.chutneytesting</groupId>
Expand Down
8 changes: 8 additions & 0 deletions chutney/action-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>action-spi</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
8 changes: 8 additions & 0 deletions chutney/chutney-junit/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>chutney-junit-api</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>com.chutneytesting</groupId>
Expand Down
8 changes: 8 additions & 0 deletions chutney/chutney-junit/engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>chutney-junit-engine</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>com.chutneytesting</groupId>
Expand Down
8 changes: 8 additions & 0 deletions chutney/chutney-junit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
<description>A junit 5 engine implementation for running glacio features.</description>
<inceptionYear>2020</inceptionYear>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<modules>
<module>api</module>
<module>engine</module>
Expand Down
8 changes: 8 additions & 0 deletions chutney/engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>engine</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>

<dependency>
Expand Down
8 changes: 8 additions & 0 deletions chutney/environment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@

<artifactId>environment</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>com.chutneytesting</groupId>
Expand Down
8 changes: 8 additions & 0 deletions chutney/glacio-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>glacio-adapter</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<!-- Internal -->
<dependency>
Expand Down
7 changes: 7 additions & 0 deletions chutney/jira/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jira</artifactId>
<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
Expand Down
8 changes: 8 additions & 0 deletions chutney/packaging/local-api-unsecure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>local-api-unsecure</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<ojdbc6.version>11.2.0.4</ojdbc6.version>
</properties>
Expand Down
8 changes: 8 additions & 0 deletions chutney/packaging/local-dev/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>local-dev</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<ojdbc6.version>11.2.0.4</ojdbc6.version>
</properties>
Expand Down
7 changes: 7 additions & 0 deletions chutney/packaging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
</parent>
<artifactId>packaging</artifactId>
<packaging>pom</packaging>
<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
8 changes: 8 additions & 0 deletions chutney/server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>server-core</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>

</properties>
Expand Down
8 changes: 7 additions & 1 deletion chutney/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
</parent>

<artifactId>server</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>com.chutneytesting</groupId>
Expand Down
8 changes: 8 additions & 0 deletions chutney/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

<artifactId>tools</artifactId>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
8 changes: 8 additions & 0 deletions chutney/ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@

<packaging>jar</packaging>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
<node.version>v20.13.1</node.version>
Expand Down
8 changes: 8 additions & 0 deletions example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
<version>2.9.1-SNAPSHOT</version>
<description>A GitHub project template to help you start with Chutney Kotlin DSL</description>

<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down

0 comments on commit 7b68d7d

Please sign in to comment.