Skip to content

Commit 78ab1a6

Browse files
authored
Merge pull request #8 from bennu/feat/license
feat: add license
2 parents 10e11c7 + 776af6c commit 78ab1a6

File tree

3 files changed

+56
-7
lines changed

3 files changed

+56
-7
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2010 Bennu SpA Authors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+33-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,44 @@
1-
# Uso de librería bennu-commons
1+
Bennu Commons
2+
=============
23

3-
Para usar esta librería en los proyectos de Maven debes incluir el siguiente bloque:
4+
[![Maven Central](https://img.shields.io/maven-central/v/cl.bennu/commons?label=Maven%20Central&logo=sonatype)](https://search.maven.org/artifact/cl.bennu/commons)
5+
[![License](https://img.shields.io/github/license/bennu/commons?label=License&logo=opensourceinitiative)](https://opensource.org/license/mit-0)
6+
[![Supported JVM Versions](https://img.shields.io/badge/JVM-17--21-brightgreen.svg?label=JVM&logo=openjdk)](https://adoptium.net/es/temurin/releases/)
47

5-
```
8+
Bennu Commons, a package of Java utility classes for
9+
classes that are repeated in our projects.
10+
11+
The code is tested using the latest revision of the JDK for supported
12+
LTS releases: 17 and 21.
13+
14+
Getting the latest release
15+
--------------------------
16+
17+
You can pull it from the central Maven repositories:
18+
19+
```xml
620
<dependency>
721
<groupId>cl.bennu</groupId>
822
<artifactId>commons</artifactId>
9-
<version>0.1.0</version>
23+
<version>1.0.0</version>
1024
</dependency>
1125
```
1226

13-
### Esta librería cuenta con las siguientes dependencias:
27+
Building
28+
--------
29+
30+
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
31+
The required Java version is found in the `pom.xml` as the `maven.compiler.source` property.
32+
33+
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.
34+
35+
License
36+
-------
37+
38+
This code is licensed under the [MIT License](https://opensource.org/license/mit).
39+
40+
Dependencies
41+
------------
1442

1543
- lombok 1.18.36
1644
- jackson-core 2.18.2

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77

88
<groupId>cl.bennu</groupId>
99
<artifactId>commons</artifactId>
10-
<version>0.1.0</version>
10+
<version>1.0.0</version>
1111
<name>bennu-commons</name>
1212
<description>Utilitarios bennu</description>
1313
<url>https://github.com/bennu/commons</url>
1414

1515
<licenses>
1616
<license>
1717
<name>MIT License</name>
18-
<url>http://www.opensource.org/licenses/mit-license.php</url>
18+
<url>https://opensource.org/license/mit</url>
1919
</license>
2020
</licenses>
2121

0 commit comments

Comments
 (0)