|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 |
|
|
7 | 8 |
|
8 | 9 | <groupId>com.amazonaws</groupId>
|
9 | 10 | <artifactId>amazon-kinesis-aggregator</artifactId>
|
10 |
| - <version>1.0.3</version> |
11 |
| - |
| 11 | + <version>1.0.4</version> |
| 12 | + |
12 | 13 | <packaging>jar</packaging>
|
13 | 14 |
|
14 | 15 | <properties>
|
|
21 | 22 | <connection>scm:git:git://github.com/awslabs/kinesis-aggregation.git</connection>
|
22 | 23 | <url>https://github.com/awslabs/kinesis-aggregation</url>
|
23 | 24 | </scm>
|
24 |
| - |
| 25 | + |
25 | 26 | <licenses>
|
26 | 27 | <license>
|
27 | 28 | <name>Amazon Software License</name>
|
|
30 | 31 | </license>
|
31 | 32 | </licenses>
|
32 | 33 |
|
33 |
| - <developers> |
34 |
| - <developer> |
35 |
| - <id>amazonwebservices</id> |
36 |
| - <organization>Amazon Web Services</organization> |
37 |
| - <organizationUrl>https://aws.amazon.com</organizationUrl> |
38 |
| - <roles> |
39 |
| - <role>developer</role> |
40 |
| - </roles> |
41 |
| - </developer> |
42 |
| - </developers> |
| 34 | + <developers> |
| 35 | + <developer> |
| 36 | + <id>amazonwebservices</id> |
| 37 | + <organization>Amazon Web Services</organization> |
| 38 | + <organizationUrl>https://aws.amazon.com</organizationUrl> |
| 39 | + <roles> |
| 40 | + <role>developer</role> |
| 41 | + </roles> |
| 42 | + </developer> |
| 43 | + </developers> |
43 | 44 |
|
44 | 45 | <build>
|
45 | 46 | <defaultGoal>clean compile</defaultGoal>
|
|
86 | 87 | </executions>
|
87 | 88 | </plugin>
|
88 | 89 | <plugin>
|
89 |
| - <groupId>org.apache.maven.plugins</groupId> |
90 |
| - <artifactId>maven-antrun-plugin</artifactId> |
91 |
| - <version>1.8</version> |
92 |
| - <executions> |
93 |
| - <execution> |
94 |
| - <id>copy</id> |
95 |
| - <configuration> |
96 |
| - <target name="copy POM to target"> |
97 |
| - <copy file="${project.basedir}/pom.xml" tofile="${project.build.directory}/pom.xml" /> |
98 |
| - </target> |
99 |
| - </configuration> |
100 |
| - <phase>package</phase> |
| 90 | + <artifactId>maven-assembly-plugin</artifactId> |
| 91 | + <configuration> |
| 92 | + <finalName>KinesisAggregator-${version}</finalName> |
| 93 | + <descriptors> |
| 94 | + <descriptor>assembly.xml</descriptor> |
| 95 | + </descriptors> |
| 96 | + </configuration> |
| 97 | + </plugin> |
| 98 | + <plugin> |
| 99 | + <groupId>org.apache.maven.plugins</groupId> |
| 100 | + <artifactId>maven-antrun-plugin</artifactId> |
| 101 | + <version>1.8</version> |
| 102 | + <executions> |
| 103 | + <execution> |
| 104 | + <id>copy</id> |
| 105 | + <configuration> |
| 106 | + <target name="copy POM to target"> |
| 107 | + <copy file="${project.basedir}/pom.xml" |
| 108 | + tofile="${project.build.directory}/pom.xml" /> |
| 109 | + </target> |
| 110 | + </configuration> |
| 111 | + <phase>package</phase> |
101 | 112 | <goals>
|
102 |
| - <goal>run</goal> |
103 |
| - </goals> |
104 |
| - </execution> |
105 |
| - </executions> |
106 |
| - </plugin> |
| 113 | + <goal>run</goal> |
| 114 | + </goals> |
| 115 | + </execution> |
| 116 | + </executions> |
| 117 | + </plugin> |
107 | 118 | </plugins>
|
108 | 119 | </build>
|
109 | 120 | <dependencies>
|
|
125 | 136 | <artifactId>jackson-databind</artifactId>
|
126 | 137 | <version>2.8.11.1</version>
|
127 | 138 | </dependency>
|
| 139 | + <dependency> |
| 140 | + <groupId>org.apache.commons</groupId> |
| 141 | + <artifactId>commons-lang3</artifactId> |
| 142 | + <version>3.8.1</version> |
| 143 | + <scope>test</scope> |
| 144 | + </dependency> |
128 | 145 | <dependency>
|
129 | 146 | <groupId>junit</groupId>
|
130 | 147 | <artifactId>junit</artifactId>
|
|
0 commit comments