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.pulumi</groupId >
8
+ <artifactId >l2-component-property-deps</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+
11
+ <properties >
12
+ <encoding >UTF-8</encoding >
13
+ <maven .compiler.source>11</maven .compiler.source>
14
+ <maven .compiler.target>11</maven .compiler.target>
15
+ <maven .compiler.release>11</maven .compiler.release>
16
+ <mainClass >generated_program.App</mainClass >
17
+ <mainArgs />
18
+ </properties >
19
+
20
+ <repositories >
21
+ <repository >
22
+ <id >repository-0</id >
23
+ <url >REPOSITORY</url >
24
+ </repository >
25
+ </repositories >
26
+
27
+ <dependencies >
28
+ <dependency >
29
+ <groupId >com.pulumi</groupId >
30
+ <artifactId >pulumi</artifactId >
31
+ <version >CORE.VERSION</version >
32
+ </dependency >
33
+ <dependency >
34
+ <groupId >com.pulumi</groupId >
35
+ <artifactId >component-property-deps</artifactId >
36
+ <version >1.33.7</version >
37
+ </dependency >
38
+ </dependencies >
39
+
40
+ <build >
41
+ <plugins >
42
+ <plugin >
43
+ <groupId >org.apache.maven.plugins</groupId >
44
+ <artifactId >maven-jar-plugin</artifactId >
45
+ <version >3.2.2</version >
46
+ <configuration >
47
+ <archive >
48
+ <manifest >
49
+ <addClasspath >true</addClasspath >
50
+ <mainClass >${mainClass} </mainClass >
51
+ </manifest >
52
+ </archive >
53
+ </configuration >
54
+ </plugin >
55
+ <plugin >
56
+ <groupId >org.apache.maven.plugins</groupId >
57
+ <artifactId >maven-assembly-plugin</artifactId >
58
+ <version >3.4.2</version >
59
+ <configuration >
60
+ <archive >
61
+ <manifest >
62
+ <addClasspath >true</addClasspath >
63
+ <mainClass >${mainClass} </mainClass >
64
+ </manifest >
65
+ </archive >
66
+ <descriptorRefs >
67
+ <descriptorRef >jar-with-dependencies</descriptorRef >
68
+ </descriptorRefs >
69
+ </configuration >
70
+ <executions >
71
+ <execution >
72
+ <id >make-my-jar-with-dependencies</id >
73
+ <phase >package</phase >
74
+ <goals >
75
+ <goal >single</goal >
76
+ </goals >
77
+ </execution >
78
+ </executions >
79
+ </plugin >
80
+ <plugin >
81
+ <groupId >org.codehaus.mojo</groupId >
82
+ <artifactId >exec-maven-plugin</artifactId >
83
+ <version >3.1.0</version >
84
+ <configuration >
85
+ <mainClass >${mainClass} </mainClass >
86
+ <commandlineArgs >${mainArgs} </commandlineArgs >
87
+ </configuration >
88
+ </plugin >
89
+ <plugin >
90
+ <groupId >org.apache.maven.plugins</groupId >
91
+ <artifactId >maven-wrapper-plugin</artifactId >
92
+ <version >3.1.1</version >
93
+ <configuration >
94
+ <mavenVersion >3.8.5</mavenVersion >
95
+ </configuration >
96
+ </plugin >
97
+ </plugins >
98
+ </build >
99
+ </project >
0 commit comments