| <?xml version="1.0"?> |
| <project |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>external-url-avatar-provider</artifactId> |
| <groupId>com.googlesource.gerrit.plugins.avatar_providers</groupId> |
| <version>1.0-SNAPSHOT</version> |
| <packaging>jar</packaging> |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <Gerrit-ApiType>PLUGIN</Gerrit-ApiType> |
| <Gerrit-ApiVersion>2.8-SNAPSHOT</Gerrit-ApiVersion> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.4</version> |
| <configuration> |
| <archive> |
| <manifestEntries> |
| <Implementation-Title>Gerrit Code Review - external url gravatar provider</Implementation-Title> |
| <Implementation-Version>${project.version}</Implementation-Version> |
| <Implementation-Vendor>Gerrit Code Review</Implementation-Vendor> |
| <Implementation-Vendor-URL>http://code.google.com/p/gerrit/</Implementation-Vendor-URL> |
| <Gerrit-ApiType>${Gerrit-ApiType}</Gerrit-ApiType> |
| <Gerrit-ApiVersion>${Gerrit-ApiVersion}</Gerrit-ApiVersion> |
| </manifestEntries> |
| </archive> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.3.2</version> |
| <configuration> |
| <source>1.6</source> |
| <target>1.6</target> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.google.gerrit</groupId> |
| <artifactId>gerrit-plugin-api</artifactId> |
| <version>${Gerrit-ApiVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| |
| <repositories> |
| <repository> |
| <id>gerrit-api-repository</id> |
| <url>https://gerrit-api.commondatastorage.googleapis.com/snapshot/</url> |
| </repository> |
| </repositories> |
| </project> |