Skip to content

Commit ae2335d

Browse files
author
Alexander Lippling
committed
Created project
Change-Id: I93a306a1d04eb0cf92915bd4dbbba2c95347d4f6
0 parents  commit ae2335d

6 files changed

Lines changed: 40 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.classpath
2+
/.project
3+
/.settings/
4+
/target/

pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.sap.prd.mobile.ios.mios</groupId>
4+
<artifactId>xcode-project-reader</artifactId>
5+
<packaging>jar</packaging>
6+
<version>0.0.1-SNAPSHOT</version>
7+
8+
<build>
9+
<plugins>
10+
<plugin>
11+
<groupId>org.apache.maven.plugins</groupId>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>2.3.2</version>
14+
<configuration>
15+
<source>1.6</source>
16+
<target>1.6</target>
17+
</configuration>
18+
</plugin>
19+
<plugin>
20+
<artifactId>maven-source-plugin</artifactId>
21+
<version>2.1.2</version>
22+
<executions>
23+
<execution>
24+
<id>attach-sources</id>
25+
<goals>
26+
<goal>jar</goal>
27+
</goals>
28+
</execution>
29+
</executions>
30+
</plugin>
31+
</plugins>
32+
</build>
33+
<dependencies>
34+
35+
</dependencies>
36+
</project>

src/main/java/.keep

Whitespace-only changes.

src/main/resources/.keep

Whitespace-only changes.

src/test/java/.keep

Whitespace-only changes.

src/test/resources/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)