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>
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