Skip to content
Merged
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
18 changes: 18 additions & 0 deletions .github/workflows/check-license.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check License Headers

on: [push]

jobs:
check-license:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3

- name: Check License Headers
uses: kapetacom/check-license-action@master
with:
holder: 'Kapeta Inc.'
license: 'MIT'
sources: 'src/**/*'

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Kapeta
Copyright (c) 2023 Kapeta Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# MongoDB support for Kapeta Spring Boot SDK
# MongoDB support for Kapeta Spring Boot SDK

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/

package com.kapeta.spring.annotation;

import io.mongock.runner.springboot.EnableMongock;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/

package com.kapeta.spring.mongo;


Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/kapeta/spring/mongo/MongoAuditor.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/
package com.kapeta.spring.mongo;


Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/

package com.kapeta.spring.mongo.repository;


Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/

package com.kapeta.spring.mongo.repository;

import org.springframework.data.mongodb.core.MongoOperations;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright 2023 Kapeta Inc.
* SPDX-License-Identifier: MIT
*/

package com.kapeta.spring.mongo.repository;

import org.springframework.data.mongodb.core.MongoOperations;
Expand Down