|
1 |
| -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
2 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project> |
3 | 2 | <modelVersion>4.0.0</modelVersion>
|
4 | 3 |
|
5 | 4 | <groupId>net.nodebox</groupId>
|
|
15 | 14 | <licenses>
|
16 | 15 | <license>
|
17 | 16 | <name>GPL license, Version 2.0</name>
|
18 |
| - <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html</url> |
| 17 | + <url>https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html</url> |
19 | 18 | </license>
|
20 | 19 | </licenses>
|
21 | 20 |
|
|
129 | 128 | </repository>
|
130 | 129 | </distributionManagement>
|
131 | 130 |
|
132 |
| - <build> |
133 |
| - <plugins> |
134 |
| - <plugin> |
135 |
| - <groupId>org.apache.maven.plugins</groupId> |
136 |
| - <artifactId>maven-compiler-plugin</artifactId> |
137 |
| - <version>3.5.1</version> |
138 |
| - <configuration> |
139 |
| - <source>9</source> |
140 |
| - <target>9</target> |
141 |
| - </configuration> |
142 |
| - </plugin> |
143 |
| - <plugin> |
144 |
| - <groupId>org.apache.maven.plugins</groupId> |
145 |
| - <artifactId>maven-source-plugin</artifactId> |
146 |
| - <version>3.0.0</version> |
147 |
| - <executions> |
148 |
| - <execution> |
149 |
| - <id>attach-sources</id> |
150 |
| - <goals> |
151 |
| - <goal>jar</goal> |
152 |
| - </goals> |
153 |
| - </execution> |
154 |
| - </executions> |
155 |
| - </plugin> |
156 |
| - <plugin> |
157 |
| - <groupId>org.apache.maven.plugins</groupId> |
158 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
159 |
| - <version>2.10.3</version> |
160 |
| - <executions> |
161 |
| - <execution> |
162 |
| - <id>attach-javadocs</id> |
163 |
| - <goals> |
164 |
| - <goal>jar</goal> |
165 |
| - </goals> |
166 |
| - </execution> |
167 |
| - </executions> |
168 |
| - <configuration> |
169 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
170 |
| - </configuration> |
171 |
| - </plugin> |
172 |
| - <plugin> |
173 |
| - <groupId>org.apache.maven.plugins</groupId> |
174 |
| - <artifactId>maven-gpg-plugin</artifactId> |
175 |
| - <version>1.6</version> |
176 |
| - <executions> |
177 |
| - <execution> |
178 |
| - <id>sign-artifacts</id> |
179 |
| - <phase>verify</phase> |
180 |
| - <goals> |
181 |
| - <goal>sign</goal> |
182 |
| - </goals> |
183 |
| - </execution> |
184 |
| - </executions> |
185 |
| - </plugin> |
186 |
| - <plugin> |
187 |
| - <groupId>org.sonatype.plugins</groupId> |
188 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
189 |
| - <version>1.6.7</version> |
190 |
| - <extensions>true</extensions> |
191 |
| - <configuration> |
192 |
| - <serverId>ossrh</serverId> |
193 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
194 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
195 |
| - </configuration> |
196 |
| - </plugin> |
197 |
| - </plugins> |
198 |
| - </build> |
199 |
| - |
200 | 131 | <properties>
|
201 | 132 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
202 | 133 | </properties>
|
|
0 commit comments