|
48 | 48 | </license> |
49 | 49 | </licenses> |
50 | 50 |
|
51 | | - <profiles> |
52 | | - <profile> |
53 | | - <id>release</id> |
54 | | - <build> |
55 | | - <plugins> |
56 | | - <plugin> |
57 | | - <groupId>org.sonatype.plugins</groupId> |
58 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
59 | | - <version>1.6.3</version> |
60 | | - <extensions>true</extensions> |
61 | | - <configuration> |
62 | | - <serverId>ossrh</serverId> |
63 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
64 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
65 | | - </configuration> |
66 | | - </plugin> |
67 | | - <plugin> |
68 | | - <groupId>org.apache.maven.plugins</groupId> |
69 | | - <artifactId>maven-release-plugin</artifactId> |
70 | | - <version>2.5</version> |
71 | | - <configuration> |
72 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
73 | | - <useReleaseProfile>false</useReleaseProfile> |
74 | | - <releaseProfiles>release</releaseProfiles> |
75 | | - <goals>deploy</goals> |
76 | | - </configuration> |
77 | | - </plugin> |
78 | | - <plugin> |
79 | | - <groupId>org.apache.maven.plugins</groupId> |
80 | | - <artifactId>maven-compiler-plugin</artifactId> |
81 | | - <version>3.0</version> |
82 | | - <configuration> |
83 | | - <source>${jdk.version}</source> |
84 | | - <target>${jdk.version}</target> |
85 | | - <encoding>${project.build.sourceEncoding}</encoding> |
86 | | - </configuration> |
87 | | - </plugin> |
88 | | - <plugin> |
89 | | - <groupId>org.apache.maven.plugins</groupId> |
90 | | - <artifactId>maven-gpg-plugin</artifactId> |
91 | | - <version>1.6</version> |
92 | | - <executions> |
93 | | - <execution> |
94 | | - <id>sign-artifacts</id> |
95 | | - <phase>verify</phase> |
96 | | - <goals> |
97 | | - <goal>sign</goal> |
98 | | - </goals> |
99 | | - </execution> |
100 | | - </executions> |
101 | | - </plugin> |
102 | | - <plugin> |
103 | | - <groupId>org.apache.maven.plugins</groupId> |
104 | | - <artifactId>maven-source-plugin</artifactId> |
105 | | - <version>2.1.1</version> |
106 | | - <executions> |
107 | | - <execution> |
108 | | - <id>attach-sources</id> |
109 | | - <goals> |
110 | | - <goal>jar-no-fork</goal> |
111 | | - </goals> |
112 | | - </execution> |
113 | | - </executions> |
114 | | - <configuration> |
115 | | - <attach>true</attach> |
116 | | - </configuration> |
117 | | - </plugin> |
118 | | - <plugin> |
119 | | - <groupId>org.apache.maven.plugins</groupId> |
120 | | - <artifactId>maven-javadoc-plugin</artifactId> |
121 | | - <version>2.7</version> |
122 | | - <inherited>true</inherited> |
123 | | - <executions> |
124 | | - <execution> |
125 | | - <id>bundle-sources</id> |
126 | | - <phase>package</phase> |
127 | | - <goals> |
128 | | - <goal>jar</goal> |
129 | | - </goals> |
130 | | - </execution> |
131 | | - </executions> |
132 | | - <configuration> |
133 | | - <excludePackageNames>jodd.*:org.htmlcleaner:eu.infomas.annotation.*</excludePackageNames> |
134 | | - <maxmemory>1024</maxmemory> |
135 | | - <skip>false</skip> |
136 | | - <show>public</show> |
137 | | - <charset>UTF-8</charset> |
138 | | - <encoding>UTF-8</encoding> |
139 | | - <docencoding>UTF-8</docencoding> |
140 | | - <links> |
141 | | - <link>http://docs.oracle.com/javase/8/docs/api</link> |
142 | | - </links> |
143 | | - <!-- Avoid running into Java 8's very restrictive doclint issues --> |
144 | | - <additionalparam>-Xdoclint:none</additionalparam> |
145 | | - </configuration> |
146 | | - </plugin> |
147 | | - </plugins> |
148 | | - </build> |
149 | | - </profile> |
150 | | - </profiles> |
151 | 51 | <dependencies> |
152 | 52 | <dependency> |
153 | 53 | <groupId>org.jsoup</groupId> |
|
265 | 165 | </plugin> |
266 | 166 | </plugins> |
267 | 167 | </build> |
| 168 | + <profiles> |
| 169 | + <profile> |
| 170 | + <id>release</id> |
| 171 | + <build> |
| 172 | + <plugins> |
| 173 | + <plugin> |
| 174 | + <groupId>org.sonatype.plugins</groupId> |
| 175 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 176 | + <version>1.6.3</version> |
| 177 | + <extensions>true</extensions> |
| 178 | + <configuration> |
| 179 | + <serverId>ossrh</serverId> |
| 180 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 181 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 182 | + </configuration> |
| 183 | + </plugin> |
| 184 | + <plugin> |
| 185 | + <groupId>org.apache.maven.plugins</groupId> |
| 186 | + <artifactId>maven-release-plugin</artifactId> |
| 187 | + <version>2.5</version> |
| 188 | + <configuration> |
| 189 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 190 | + <useReleaseProfile>false</useReleaseProfile> |
| 191 | + <releaseProfiles>release</releaseProfiles> |
| 192 | + <goals>deploy</goals> |
| 193 | + </configuration> |
| 194 | + </plugin> |
| 195 | + <plugin> |
| 196 | + <groupId>org.apache.maven.plugins</groupId> |
| 197 | + <artifactId>maven-compiler-plugin</artifactId> |
| 198 | + <version>3.0</version> |
| 199 | + <configuration> |
| 200 | + <source>${jdk.version}</source> |
| 201 | + <target>${jdk.version}</target> |
| 202 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 203 | + </configuration> |
| 204 | + </plugin> |
| 205 | + <plugin> |
| 206 | + <groupId>org.apache.maven.plugins</groupId> |
| 207 | + <artifactId>maven-gpg-plugin</artifactId> |
| 208 | + <version>1.6</version> |
| 209 | + <executions> |
| 210 | + <execution> |
| 211 | + <id>sign-artifacts</id> |
| 212 | + <phase>verify</phase> |
| 213 | + <goals> |
| 214 | + <goal>sign</goal> |
| 215 | + </goals> |
| 216 | + </execution> |
| 217 | + </executions> |
| 218 | + </plugin> |
| 219 | + <plugin> |
| 220 | + <groupId>org.apache.maven.plugins</groupId> |
| 221 | + <artifactId>maven-source-plugin</artifactId> |
| 222 | + <version>2.1.1</version> |
| 223 | + <executions> |
| 224 | + <execution> |
| 225 | + <id>attach-sources</id> |
| 226 | + <goals> |
| 227 | + <goal>jar-no-fork</goal> |
| 228 | + </goals> |
| 229 | + </execution> |
| 230 | + </executions> |
| 231 | + <configuration> |
| 232 | + <attach>true</attach> |
| 233 | + </configuration> |
| 234 | + </plugin> |
| 235 | + <plugin> |
| 236 | + <groupId>org.apache.maven.plugins</groupId> |
| 237 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 238 | + <version>2.7</version> |
| 239 | + <inherited>true</inherited> |
| 240 | + <executions> |
| 241 | + <execution> |
| 242 | + <id>bundle-sources</id> |
| 243 | + <phase>package</phase> |
| 244 | + <goals> |
| 245 | + <goal>jar</goal> |
| 246 | + </goals> |
| 247 | + </execution> |
| 248 | + </executions> |
| 249 | + <configuration> |
| 250 | + <excludePackageNames>jodd.*:org.htmlcleaner:eu.infomas.annotation.*</excludePackageNames> |
| 251 | + <maxmemory>1024</maxmemory> |
| 252 | + <skip>false</skip> |
| 253 | + <show>public</show> |
| 254 | + <charset>UTF-8</charset> |
| 255 | + <encoding>UTF-8</encoding> |
| 256 | + <docencoding>UTF-8</docencoding> |
| 257 | + <links> |
| 258 | + <link>http://docs.oracle.com/javase/8/docs/api</link> |
| 259 | + </links> |
| 260 | + <!-- Avoid running into Java 8's very restrictive doclint issues --> |
| 261 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 262 | + </configuration> |
| 263 | + </plugin> |
| 264 | + </plugins> |
| 265 | + </build> |
| 266 | + </profile> |
| 267 | + </profiles> |
268 | 268 | <distributionManagement> |
269 | 269 | <snapshotRepository> |
270 | 270 | <id>ossrh</id> |
|
0 commit comments