Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
| 4 | Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved. |
| 5 | |
| 6 | This program and the accompanying materials are made available under the |
| 7 | terms of the Eclipse Distribution License v. 1.0, which is available at |
| 8 | http://www.eclipse.org/org/documents/edl-v10.php. |
| 9 | |
| 10 | SPDX-License-Identifier: BSD-3-Clause |
| 11 | |
| 12 | --> |
| 13 | |
| 14 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 15 | <parent> |
| 16 | <artifactId>project</artifactId> |
| 17 | <groupId>org.glassfish.jersey.examples</groupId> |
jersey-bot | e81feb4 | 2019-01-25 16:18:12 +0000 | [diff] [blame^] | 18 | <version>2.29-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 19 | </parent> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <artifactId>oauth-client-twitter</artifactId> |
| 23 | <packaging>jar</packaging> |
| 24 | |
| 25 | |
| 26 | <description> |
| 27 | Twitter client using OAuth 1 support for Jersey that retrieves Tweets from the home timeline of a |
| 28 | registered Twitter account. |
| 29 | </description> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.glassfish.jersey.core</groupId> |
| 33 | <artifactId>jersey-client</artifactId> |
| 34 | <version>${project.version}</version> |
| 35 | </dependency> |
| 36 | |
| 37 | <dependency> |
| 38 | <groupId>org.glassfish.jersey.inject</groupId> |
| 39 | <artifactId>jersey-hk2</artifactId> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>org.glassfish.jersey.security</groupId> |
| 44 | <artifactId>oauth1-client</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
| 49 | <groupId>org.glassfish.jersey.media</groupId> |
| 50 | <artifactId>jersey-media-json-jackson</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | </dependencies> |
| 54 | |
| 55 | |
| 56 | <build> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.codehaus.mojo</groupId> |
| 60 | <artifactId>exec-maven-plugin</artifactId> |
| 61 | <configuration> |
| 62 | <mainClass>org.glassfish.jersey.examples.oauth.twitterclient.App</mainClass> |
| 63 | </configuration> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </build> |
| 67 | |
| 68 | <profiles> |
| 69 | <profile> |
| 70 | <id>release</id> |
| 71 | <build> |
| 72 | <plugins> |
| 73 | <plugin> |
| 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-assembly-plugin</artifactId> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | </profile> |
| 80 | </profiles> |
| 81 | |
| 82 | </project> |