Skip to content

Commit 9490241

Browse files
committed
Initial import
1 parent 6bd556e commit 9490241

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.settings

.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>javamoney-parent</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.m2e.core.maven2Builder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
16+
</natures>
17+
</projectDescription>

pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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>org.javamoney</groupId>
4+
<artifactId>javamoney-parent</artifactId>
5+
<version>0.3-SNAPSHOT</version>
6+
<packaging>pom</packaging>
7+
<name>Money and Currency - JavaMoney parent</name>
8+
<description>JavaMoney Parent POM</description>
9+
<organization>
10+
<name>JavaMoney.org</name>
11+
<url>http://javamoney.org</url>
12+
</organization>
13+
<properties>
14+
<jsr.version>0.7-SNAPSHOT</jsr.version>
15+
16+
<jdkVersion>1.7</jdkVersion>
17+
<maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
18+
<maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
21+
<slf4j.version>1.7.2</slf4j.version>
22+
</properties>
23+
<licenses>
24+
<license>
25+
<name>Apache License version 2.0</name>
26+
<url>LICENSE</url>
27+
</license>
28+
</licenses>
29+
</project>

0 commit comments

Comments
 (0)