|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 3 |
|
4 | | - <parent> |
5 | | - <artifactId>oss-parent</artifactId> |
6 | | - <groupId>org.sonatype.oss</groupId> |
7 | | - <version>7</version> |
8 | | - </parent> |
9 | 4 | <modelVersion>4.0.0</modelVersion> |
10 | 5 | <groupId>com.github.jsonld-java</groupId> |
11 | 6 | <artifactId>jsonld-java-parent</artifactId> |
|
50 | 45 | <slf4j.version>1.7.9</slf4j.version> |
51 | 46 | </properties> |
52 | 47 | <prerequisites> |
53 | | - <maven>2.2.1</maven> |
| 48 | + <maven>3.0.0</maven> |
54 | 49 | </prerequisites> |
55 | 50 | <dependencyManagement> |
56 | 51 | <dependencies> |
|
69 | 64 | <artifactId>jackson-annotations</artifactId> |
70 | 65 | <version>${jackson.version}</version> |
71 | 66 | </dependency> |
72 | | - <dependency> |
73 | | - <groupId>org.apache.clerezza</groupId> |
74 | | - <artifactId>rdf.core</artifactId> |
75 | | - <version>${clerezza.version}</version> |
76 | | - </dependency> |
77 | 67 | <dependency> |
78 | 68 | <groupId>junit</groupId> |
79 | 69 | <artifactId>junit</artifactId> |
|
262 | 252 | </plugins> |
263 | 253 | </pluginManagement> |
264 | 254 | </build> |
| 255 | + |
| 256 | + <repositories> |
| 257 | + <repository> |
| 258 | + <id>sonatype-nexus-snapshots</id> |
| 259 | + <name>Sonatype Nexus Snapshots</name> |
| 260 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 261 | + <releases> |
| 262 | + <enabled>false</enabled> |
| 263 | + </releases> |
| 264 | + <snapshots> |
| 265 | + <enabled>true</enabled> |
| 266 | + </snapshots> |
| 267 | + </repository> |
| 268 | + </repositories> |
| 269 | + |
| 270 | + |
| 271 | + <distributionManagement> |
| 272 | + <snapshotRepository> |
| 273 | + <id>sonatype-nexus-snapshots</id> |
| 274 | + <name>Sonatype Nexus Snapshots</name> |
| 275 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 276 | + </snapshotRepository> |
| 277 | + <repository> |
| 278 | + <id>sonatype-nexus-staging</id> |
| 279 | + <name>Nexus Release Repository</name> |
| 280 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 281 | + </repository> |
| 282 | + </distributionManagement> |
| 283 | + |
| 284 | + <profiles> |
| 285 | + <profile> |
| 286 | + <id>sonatype-oss-release</id> |
| 287 | + <build> |
| 288 | + <plugins> |
| 289 | + <plugin> |
| 290 | + <groupId>org.apache.maven.plugins</groupId> |
| 291 | + <artifactId>maven-source-plugin</artifactId> |
| 292 | + <version>2.1.2</version> |
| 293 | + <executions> |
| 294 | + <execution> |
| 295 | + <id>attach-sources</id> |
| 296 | + <goals> |
| 297 | + <goal>jar-no-fork</goal> |
| 298 | + </goals> |
| 299 | + </execution> |
| 300 | + </executions> |
| 301 | + </plugin> |
| 302 | + <plugin> |
| 303 | + <groupId>org.apache.maven.plugins</groupId> |
| 304 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 305 | + <version>2.7</version> |
| 306 | + <executions> |
| 307 | + <execution> |
| 308 | + <id>attach-javadocs</id> |
| 309 | + <goals> |
| 310 | + <goal>jar</goal> |
| 311 | + </goals> |
| 312 | + </execution> |
| 313 | + </executions> |
| 314 | + </plugin> |
| 315 | + <plugin> |
| 316 | + <groupId>org.apache.maven.plugins</groupId> |
| 317 | + <artifactId>maven-gpg-plugin</artifactId> |
| 318 | + <version>1.1</version> |
| 319 | + <executions> |
| 320 | + <execution> |
| 321 | + <id>sign-artifacts</id> |
| 322 | + <phase>verify</phase> |
| 323 | + <goals> |
| 324 | + <goal>sign</goal> |
| 325 | + </goals> |
| 326 | + </execution> |
| 327 | + </executions> |
| 328 | + </plugin> |
| 329 | + </plugins> |
| 330 | + </build> |
| 331 | + </profile> |
| 332 | + </profiles> |
265 | 333 | </project> |
266 | 334 |
|
0 commit comments