Skip to content

Commit ec4582d

Browse files
Merge pull request #2 from jonpereiradev/central
Central
2 parents 9a428a8 + 0ea4b91 commit ec4582d

3 files changed

Lines changed: 91 additions & 1 deletion

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 jonpereiradev
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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,3 +184,7 @@ public class Main {
184184

185185
- Enable only different object for diff result;
186186
- Collection with value working with nested fields (Ex: "emails.principal.description");
187+
188+
# License
189+
190+
Diff-Objects is available under the [MIT license](https://tldrlegal.com/license/mit-license).

pom.xml

Lines changed: 66 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,29 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.github.jonpereiradev</groupId>
66
<artifactId>diff-objects</artifactId>
7-
<version>0.3.0</version>
7+
<version>1.0.0</version>
88
<packaging>jar</packaging>
9+
<name>${project.groupId}:${project.artifactId}</name>
10+
<description>Project to help build functionality that needs to show the differences between two objects</description>
11+
<url>https://github.com/jonpereiradev/diff-objects</url>
12+
<licenses>
13+
<license>
14+
<name>MIT License</name>
15+
<url>http://www.opensource.org/licenses/mit-license.php</url>
16+
</license>
17+
</licenses>
18+
<developers>
19+
<developer>
20+
<name>Jonathan Pereira</name>
21+
<email>jonpereiradev@gmail.com</email>
22+
<url>https://github.com/jonpereiradev</url>
23+
</developer>
24+
</developers>
25+
<scm>
26+
<connection>scm:git:git://github.com/jonpereiradev/diff-objects.git</connection>
27+
<developerConnection>scm:git:ssh://github.com:jonpereiradev/diff-objects.git</developerConnection>
28+
<url>https://github.com/jonpereiradev/diff-objects/tree/master</url>
29+
</scm>
930
<properties>
1031
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1132
<maven.compiler.source>1.7</maven.compiler.source>
@@ -24,4 +45,48 @@
2445
<scope>test</scope>
2546
</dependency>
2647
</dependencies>
48+
<build>
49+
<plugins>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-source-plugin</artifactId>
53+
<version>3.0.1</version>
54+
<executions>
55+
<execution>
56+
<id>attach-sources</id>
57+
<goals>
58+
<goal>jar-no-fork</goal>
59+
</goals>
60+
</execution>
61+
</executions>
62+
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-javadoc-plugin</artifactId>
66+
<version>3.0.1</version>
67+
<executions>
68+
<execution>
69+
<id>attach-javadocs</id>
70+
<goals>
71+
<goal>jar</goal>
72+
</goals>
73+
</execution>
74+
</executions>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-gpg-plugin</artifactId>
79+
<version>1.6</version>
80+
<executions>
81+
<execution>
82+
<id>sign-artifacts</id>
83+
<phase>verify</phase>
84+
<goals>
85+
<goal>sign</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
</plugins>
91+
</build>
2792
</project>

0 commit comments

Comments
 (0)