Skip to content

Commit 1e3b12a

Browse files
authored
Merge pull request #7 from antmendoza/add-missing-pom.xml
added missing pom.xml to app-java project
2 parents 1425021 + 9d67395 commit 1e3b12a

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*.out
33
*.test
44
*.xml
5+
!pom.xml
56
*.swp
67
.idea/
78
*.iml

app-java/pom.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
6+
<modelVersion>4.0.0</modelVersion>
7+
<groupId>io.temporal</groupId>
8+
<artifactId>app-java</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.target>1.8</maven.compiler.target>
13+
<maven.compiler.source>1.8</maven.compiler.source>
14+
<temporal-sdk.version>1.13.0</temporal-sdk.version>
15+
</properties>
16+
17+
<dependencies>
18+
19+
<dependency>
20+
<groupId>io.temporal</groupId>
21+
<artifactId>temporal-sdk</artifactId>
22+
<version>${temporal-sdk.version}</version>
23+
</dependency>
24+
25+
</dependencies>
26+
27+
</project>
28+

0 commit comments

Comments
 (0)