|
9 | 9 | <version>1.2.0</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 | <name>${project.groupId}:${project.artifactId}</name> |
12 | | - <description>Project to help build functionality that needs to show the differences between two objects</description> |
| 12 | + <description>API to compare the difference between two objects</description> |
13 | 13 | <url>https://github.com/jonpereiradev/diff-objects</url> |
14 | 14 | <licenses> |
15 | 15 | <license> |
|
30 | 30 | <url>https://github.com/jonpereiradev/diff-objects/tree/master</url> |
31 | 31 | </scm> |
32 | 32 | <properties> |
33 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
34 | 33 | <maven.compiler.source>1.8</maven.compiler.source> |
35 | 34 | <maven.compiler.target>1.8</maven.compiler.target> |
| 35 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 36 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
36 | 37 | </properties> |
37 | 38 | <dependencies> |
38 | 39 | <dependency> |
|
73 | 74 | </flowInitContext> |
74 | 75 | </configuration> |
75 | 76 | </plugin> |
| 77 | + <plugin> |
| 78 | + <groupId>org.apache.maven.plugins</groupId> |
| 79 | + <artifactId>maven-source-plugin</artifactId> |
| 80 | + <version>3.2.1</version> |
| 81 | + <executions> |
| 82 | + <execution> |
| 83 | + <id>attach-sources</id> |
| 84 | + <goals> |
| 85 | + <goal>jar-no-fork</goal> |
| 86 | + </goals> |
| 87 | + </execution> |
| 88 | + </executions> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <groupId>org.apache.maven.plugins</groupId> |
| 92 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 93 | + <version>3.2.0</version> |
| 94 | + <executions> |
| 95 | + <execution> |
| 96 | + <id>attach-javadocs</id> |
| 97 | + <goals> |
| 98 | + <goal>jar</goal> |
| 99 | + </goals> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
76 | 103 | </plugins> |
77 | 104 | <resources> |
78 | 105 | <resource> |
|
83 | 110 | </build> |
84 | 111 | <profiles> |
85 | 112 | <profile> |
86 | | - <id>ossrh</id> |
| 113 | + <id>deploy</id> |
87 | 114 | <distributionManagement> |
88 | 115 | <snapshotRepository> |
89 | | - <id>ossrh</id> |
| 116 | + <id>deploy</id> |
90 | 117 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
91 | 118 | </snapshotRepository> |
92 | 119 | <repository> |
93 | | - <id>ossrh</id> |
| 120 | + <id>deploy</id> |
94 | 121 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
95 | 122 | </repository> |
96 | 123 | </distributionManagement> |
|
127 | 154 | </execution> |
128 | 155 | </executions> |
129 | 156 | </plugin> |
130 | | - <plugin> |
131 | | - <groupId>org.apache.maven.plugins</groupId> |
132 | | - <artifactId>maven-source-plugin</artifactId> |
133 | | - <version>3.2.1</version> |
134 | | - <executions> |
135 | | - <execution> |
136 | | - <id>attach-sources</id> |
137 | | - <goals> |
138 | | - <goal>jar-no-fork</goal> |
139 | | - </goals> |
140 | | - </execution> |
141 | | - </executions> |
142 | | - </plugin> |
143 | | - <plugin> |
144 | | - <groupId>org.apache.maven.plugins</groupId> |
145 | | - <artifactId>maven-javadoc-plugin</artifactId> |
146 | | - <version>3.2.0</version> |
147 | | - <executions> |
148 | | - <execution> |
149 | | - <id>attach-javadocs</id> |
150 | | - <goals> |
151 | | - <goal>jar</goal> |
152 | | - </goals> |
153 | | - </execution> |
154 | | - </executions> |
155 | | - </plugin> |
156 | 157 | </plugins> |
157 | 158 | </build> |
158 | 159 | </profile> |
|
0 commit comments