-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
93 lines (87 loc) · 3.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="UTF-8"?>
<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>io.fineo.lambda</groupId>
<artifactId>lambda</artifactId>
<version>1.0-SNAPSHOT</version>
<modules>
<module>lambda-core</module>
<module>lambda-dynamo</module>
<module>lambda-archetype</module>
</modules>
<packaging>pom</packaging>
<properties>
<aws-java-sdk.version>1.11.38</aws-java-sdk.version>
<aws.dynamodb.local.version>1.10.5.1</aws.dynamodb.local.version>
<maven.dependency.version>2.10</maven.dependency.version>
<surefire.version>2.19</surefire.version>
<!-- Test Running properties -->
<test.output.to.file>true</test.output.to.file>
<test.exclude.pattern></test.exclude.pattern>
</properties>
<repositories>
<!-- Official amazon dynamo local repository -->
<repository>
<id>dynamodb-local</id>
<name>DynamoDB Local Release Repository</name>
<url>http://dynamodb-local.s3-website-us-west-2.amazonaws.com/release</url>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- Create test jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<!-- Configuration for two distinct phases of test execution. First phase just
supports local, non-s3 requiring tests. The second phase is just the tests
that require a connection to s3 manipulate buckets/files there. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<!-- Generic testing configuration for all packages -->
<configuration>
<redirectTestOutputToFile>${test.output.to.file}</redirectTestOutputToFile>
<argLine>-enableassertions -Djava.security.egd=file:/dev/./urandom
-Dsqlite4java.library.path=${project.build.directory}/dependencies
-Djava.net.preferIPv4Stack=true
</argLine>
<excludes>
<!-- users can add -D option to skip particular test classes
ex: mvn test -Dtest.exclude.pattern=**/TestFoo.java,**/TestBar.java
-->
<exclude>${test.exclude.pattern}</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>
</project>