This repository has been archived by the owner on Apr 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
52 lines (48 loc) · 1.92 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
<?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>cds</groupId>
<artifactId>notify-client-reference-java</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>notify-client-reference-java</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- Installs dependencies needed for Gov UK Notify -->
<dependency>
<groupId>uk.gov.service.notify</groupId>
<artifactId>notifications-java-client</artifactId>
<version>3.14.2-RELEASE</version>
<type>pom</type>
</dependency>
<!-- Installs the Gov UK Notify Java Client library -->
<dependency>
<groupId>uk.gov.service.notify</groupId>
<artifactId>notifications-java-client</artifactId>
<version>3.14.2-RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Tell Maven which version of Java to use for compilation and runtime -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>12</source>
<target>12</target>
</configuration>
</plugin>
<!-- Allows `mvn exec:java` to know which main method to run-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>cds.App</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>