Skip to content

Commit 41c7349

Browse files
committed
pom.xml changes
1 parent 17e14e9 commit 41c7349

File tree

3 files changed

+123
-5
lines changed

3 files changed

+123
-5
lines changed

.idea/azure-cosmos-java-sql-api-samples.iml

Lines changed: 49 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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.azure</groupId>
8+
<artifactId>azure-cosmos-java-sql-api-samples</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
<name>Get Started With Sync / Async Java SDK for SQL API of Azure Cosmos DB Database Service</name>
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
</properties>
14+
<build>
15+
<plugins>
16+
<plugin>
17+
<artifactId>maven-compiler-plugin</artifactId>
18+
<version>3.1</version>
19+
<configuration>
20+
<source>1.8</source>
21+
<target>1.8</target>
22+
</configuration>
23+
</plugin>
24+
<plugin>
25+
<groupId>org.codehaus.mojo</groupId>
26+
<artifactId>exec-maven-plugin</artifactId>
27+
<version>1.6.0</version>
28+
<executions>
29+
<execution>
30+
<id>sync</id>
31+
<configuration>
32+
<mainClass>com.azure.cosmos.sample.sync.SyncMain</mainClass>
33+
</configuration>
34+
</execution>
35+
<execution>
36+
<id>async</id>
37+
<configuration>
38+
<mainClass>com.azure.cosmos.sample.async.AsyncMain</mainClass>
39+
</configuration>
40+
</execution>
41+
</executions>
42+
</plugin>
43+
<plugin>
44+
<groupId>org.apache.maven.plugins</groupId>
45+
<artifactId>maven-eclipse-plugin</artifactId>
46+
<version>2.8</version>
47+
<configuration>
48+
<classpathContainers>
49+
<classpathContainer>
50+
org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8
51+
</classpathContainer>
52+
</classpathContainers>
53+
</configuration>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
<dependencies>
58+
<dependency>
59+
<groupId>com.azure</groupId>
60+
<artifactId>azure-cosmos</artifactId>
61+
<version>4.0.0-preview.2</version>
62+
</dependency>
63+
</dependencies>
64+
65+
</project>

0 commit comments

Comments
 (0)