Skip to content

Commit c79885f

Browse files
author
Dan Schulte
committed
Fix empty pom.xml issue
1 parent 29cfb66 commit c79885f

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

Diff for: pom.xml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.microsoft.azure</groupId>
6+
<artifactId>resources-java-deploy-using-arm-template</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<name>DeployUsingARMTemplate.java</name>
9+
<description></description>
10+
<url>https://github.com/Azure/resources-java-deploy-using-arm-template</url>
11+
<build>
12+
<plugins>
13+
<plugin>
14+
<groupId>org.codehaus.mojo</groupId>
15+
<artifactId>exec-maven-plugin</artifactId>
16+
<version>1.4.0</version>
17+
<configuration>
18+
<mainClass>com.microsoft.azure.management.resources.samples.DeployUsingARMTemplate</mainClass>
19+
</configuration>
20+
</plugin>
21+
<plugin>
22+
<artifactId>maven-compiler-plugin</artifactId>
23+
<version>3.0</version>
24+
<configuration>
25+
<source>1.7</source>
26+
<target>1.7</target>
27+
</configuration>
28+
</plugin>
29+
<plugin>
30+
<artifactId>maven-assembly-plugin</artifactId>
31+
<executions>
32+
<execution>
33+
<phase>package</phase>
34+
<goals>
35+
<goal>attached</goal>
36+
</goals>
37+
<configuration>
38+
<descriptorRefs>
39+
<descriptorRef>jar-with-dependencies</descriptorRef>
40+
</descriptorRefs>
41+
<archive>
42+
<manifest>
43+
<mainClass>com.microsoft.azure.management.resources.samples.DeployUsingARMTemplate.java</mainClass>
44+
</manifest>
45+
</archive>
46+
</configuration>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
</plugins>
51+
</build>
52+
<dependencies>
53+
<dependency>
54+
<groupId>com.microsoft.azure</groupId>
55+
<artifactId>azure</artifactId>
56+
<version>1.2.1</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>com.github.cverges.expect4j</groupId>
60+
<artifactId>expect4j</artifactId>
61+
<version>1.6</version>
62+
</dependency>
63+
</dependencies>
64+
</project>

0 commit comments

Comments
 (0)