-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
57 lines (57 loc) · 1.78 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.julianrendell.iago</groupId>
<artifactId>examples</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<parent>
<groupId>com.twitter</groupId>
<artifactId>service-292</artifactId>
<version>0.0.12</version>
</parent>
<properties>
<git.dir>${project.basedir}/.git</git.dir>
<mainClass>com.twitter.parrot.launcher.LauncherMain</mainClass>
</properties>
<repositories>
<repository>
<id>Twitter public Maven repo</id>
<url>http://maven.twttr.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>Twitter public Maven repo</id>
<url>http://maven.twttr.com</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>iago</artifactId>
<version>0.6.8</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.twitter</groupId>
<artifactId>maven-build-properties-plugin</artifactId>
<configuration>
<buildPropertiesPackage>com.twitter.iago-echo</buildPropertiesPackage>
</configuration>
</plugin>
<plugin>
<groupId>com.twitter</groupId>
<artifactId>maven-finagle-thrift-plugin</artifactId>
<configuration>
<thriftGenerators>
<thriftGenerator>finagle</thriftGenerator>
</thriftGenerators>
</configuration>
<version>0.0.9</version>
</plugin>
</plugins>
</build>
</project>