1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
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" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >com.github.indyaah</groupId >
8+ <artifactId >codeartifact-maven-extension</artifactId >
9+ <version >1.0.0</version >
10+
11+ <properties >
12+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
13+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
14+
15+ <maven .compiler.source>1.8</maven .compiler.source>
16+ <maven .compiler.target>1.8</maven .compiler.target>
17+
18+ <codeartifact .version>2.17.136</codeartifact .version>
19+ <maven .version>3.8.4</maven .version>
20+ <plexus .version>2.1.1</plexus .version>
21+
22+ <maven-plugin .version>3.6.4</maven-plugin .version>
23+ <fmt-maven-plugin .version>2.13</fmt-maven-plugin .version>
24+
25+ </properties >
26+
27+ <dependencies >
28+ <dependency >
29+ <groupId >org.apache.maven</groupId >
30+ <artifactId >maven-plugin-api</artifactId >
31+ <version >${maven.version} </version >
32+ <scope >provided</scope >
33+ </dependency >
34+
35+ <dependency >
36+ <groupId >org.apache.maven</groupId >
37+ <artifactId >maven-core</artifactId >
38+ <version >${maven.version} </version >
39+ <scope >provided</scope >
40+ </dependency >
41+
42+ <dependency >
43+ <groupId >org.apache.maven</groupId >
44+ <artifactId >maven-embedder</artifactId >
45+ <version >${maven.version} </version >
46+ <scope >provided</scope >
47+ </dependency >
48+
49+ <dependency >
50+ <groupId >org.apache.maven.plugin-tools</groupId >
51+ <artifactId >maven-plugin-annotations</artifactId >
52+ <version >${maven-plugin.version} </version >
53+ <scope >provided</scope >
54+ </dependency >
55+
56+
57+ <dependency >
58+ <groupId >org.codehaus.plexus</groupId >
59+ <artifactId >plexus-component-annotations</artifactId >
60+ <version >${plexus.version} </version >
61+ </dependency >
62+ <dependency >
63+ <groupId >software.amazon.awssdk</groupId >
64+ <artifactId >codeartifact</artifactId >
65+ <version >${codeartifact.version} </version >
66+ </dependency >
67+ </dependencies >
68+
69+ <build >
70+ <plugins >
71+ <plugin >
72+ <groupId >org.codehaus.plexus</groupId >
73+ <artifactId >plexus-component-metadata</artifactId >
74+ <version >${plexus.version} </version >
75+ <executions >
76+ <execution >
77+ <goals >
78+ <goal >generate-metadata</goal >
79+ </goals >
80+ </execution >
81+ </executions >
82+ </plugin >
83+ <plugin >
84+ <groupId >org.apache.maven.plugins</groupId >
85+ <artifactId >maven-plugin-plugin</artifactId >
86+ <version >${maven-plugin.version} </version >
87+ </plugin >
88+ <plugin >
89+ <groupId >com.coveo</groupId >
90+ <artifactId >fmt-maven-plugin</artifactId >
91+ <version >${fmt-maven-plugin.version} </version >
92+ <executions >
93+ <execution >
94+ <goals >
95+ <goal >check</goal >
96+ </goals >
97+ </execution >
98+ </executions >
99+ </plugin >
100+
101+ </plugins >
102+
103+ </build >
104+ </project >
0 commit comments