Commit 62242e0611a6d5f6853a8f86bf05feaf5945c571
Exists in
master
Merge branch 'master' of gitlab.alfresco.com:innovation/heartbeat2
Showing
1 changed file
Show diff stats
pom.xml
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <project xmlns="http://maven.apache.org/POM/4.0.0" | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | <modelVersion>4.0.0</modelVersion> | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | ||
7 | <groupId>org.alfresco</groupId> | 7 | <parent> |
8 | <groupId>org.alfresco</groupId> | ||
9 | <artifactId>alfresco-super-pom</artifactId> | ||
10 | <version>8</version> | ||
11 | </parent> | ||
12 | |||
8 | <artifactId>heartbeat</artifactId> | 13 | <artifactId>heartbeat</artifactId> |
9 | <version>2.0-SNAPSHOT</version> | 14 | <version>2.0-SNAPSHOT</version> |
10 | 15 | ||
11 | <properties> | 16 | <properties> |
12 | <aws.lambda.core.version>1.1.0</aws.lambda.core.version> | 17 | <aws.lambda.core.version>1.1.0</aws.lambda.core.version> |
13 | <aws.dynamodb.sdk.version>1.11.68</aws.dynamodb.sdk.version> | 18 | <aws.dynamodb.sdk.version>1.11.68</aws.dynamodb.sdk.version> |
14 | </properties> | 19 | </properties> |
15 | 20 | ||
16 | <dependencies> | 21 | <dependencies> |
17 | <dependency> | 22 | <dependency> |
18 | <groupId>com.amazonaws</groupId> | 23 | <groupId>com.amazonaws</groupId> |
19 | <artifactId>aws-lambda-java-core</artifactId> | 24 | <artifactId>aws-lambda-java-core</artifactId> |
20 | <version>${aws.lambda.core.version}</version> | 25 | <version>${aws.lambda.core.version}</version> |
21 | </dependency> | 26 | </dependency> |
22 | <dependency> | 27 | <dependency> |
23 | <groupId>com.amazonaws</groupId> | 28 | <groupId>com.amazonaws</groupId> |
24 | <artifactId>aws-java-sdk-dynamodb</artifactId> | 29 | <artifactId>aws-java-sdk-dynamodb</artifactId> |
25 | <version>${aws.dynamodb.sdk.version}</version> | 30 | <version>${aws.dynamodb.sdk.version}</version> |
26 | </dependency> | 31 | </dependency> |
27 | </dependencies> | 32 | </dependencies> |
28 | 33 | ||
29 | <build> | 34 | <build> |
30 | <plugins> | 35 | <plugins> |
31 | <plugin> | 36 | <plugin> |
32 | <groupId>org.apache.maven.plugins</groupId> | 37 | <groupId>org.apache.maven.plugins</groupId> |
33 | <artifactId>maven-shade-plugin</artifactId> | 38 | <artifactId>maven-shade-plugin</artifactId> |
34 | <version>2.3</version> | ||
35 | <configuration> | 39 | <configuration> |
36 | <createDependencyReducedPom>false</createDependencyReducedPom> | 40 | <createDependencyReducedPom>false</createDependencyReducedPom> |
37 | </configuration> | 41 | </configuration> |
38 | <executions> | 42 | <executions> |
39 | <execution> | 43 | <execution> |
40 | <phase>package</phase> | 44 | <phase>package</phase> |
41 | <goals> | 45 | <goals> |
42 | <goal>shade</goal> | 46 | <goal>shade</goal> |
43 | </goals> | 47 | </goals> |
44 | </execution> | 48 | </execution> |
45 | </executions> | 49 | </executions> |
46 | </plugin> | 50 | </plugin> |
47 | <plugin> | ||
48 | <groupId>org.apache.maven.plugins</groupId> | ||
49 | <artifactId>maven-compiler-plugin</artifactId> | ||
50 | <version>3.5.1</version> | ||
51 | <configuration> | ||
52 | <source>1.8</source> | ||
53 | <target>1.8</target> | ||
54 | </configuration> |