Skip to content

Commit b44a52e

Browse files
authored
chore: Add licensing (#4)
1 parent 76a13ca commit b44a52e

File tree

9 files changed

+53
-2
lines changed

9 files changed

+53
-2
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Check License Headers
2+
3+
on: [push]
4+
5+
jobs:
6+
check-license:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Check out Git repository
10+
uses: actions/checkout@v3
11+
12+
- name: Check License Headers
13+
uses: kapetacom/check-license-action@master
14+
with:
15+
holder: 'Kapeta Inc.'
16+
license: 'MIT'
17+
sources: 'src/**/*'
18+

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Kapeta
3+
Copyright (c) 2023 Kapeta Inc
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
# MongoDB support for Kapeta Spring Boot SDK
1+
# MongoDB support for Kapeta Spring Boot SDK
2+
3+
## License
4+
5+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

src/main/java/com/kapeta/spring/annotation/KapetaEnableMongoDB.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright 2023 Kapeta Inc.
3+
* SPDX-License-Identifier: MIT
4+
*/
5+
16
package com.kapeta.spring.annotation;
27

38
import io.mongock.runner.springboot.EnableMongock;

src/main/java/com/kapeta/spring/mongo/AbstractMongoDBConfig.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright 2023 Kapeta Inc.
3+
* SPDX-License-Identifier: MIT
4+
*/
5+
16
package com.kapeta.spring.mongo;
27

38

src/main/java/com/kapeta/spring/mongo/MongoAuditor.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2023 Kapeta Inc.
3+
* SPDX-License-Identifier: MIT
4+
*/
15
package com.kapeta.spring.mongo;
26

37

src/main/java/com/kapeta/spring/mongo/repository/BaseMongoRepository.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright 2023 Kapeta Inc.
3+
* SPDX-License-Identifier: MIT
4+
*/
5+
16
package com.kapeta.spring.mongo.repository;
27

38

src/main/java/com/kapeta/spring/mongo/repository/BaseMongoRepositoryImpl.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright 2023 Kapeta Inc.
3+
* SPDX-License-Identifier: MIT
4+
*/
5+
16
package com.kapeta.spring.mongo.repository;
27

38
import org.springframework.data.mongodb.core.MongoOperations;

src/main/java/com/kapeta/spring/mongo/repository/MongoRepositoryFragment.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright 2023 Kapeta Inc.
3+
* SPDX-License-Identifier: MIT
4+
*/
5+
16
package com.kapeta.spring.mongo.repository;
27

38
import org.springframework.data.mongodb.core.MongoOperations;

0 commit comments

Comments
 (0)