Skip to content

Commit 6fb7d8b

Browse files
author
Joerg Huber
committed
Initial submission.
1 parent 92e1d03 commit 6fb7d8b

12 files changed

Lines changed: 234 additions & 0 deletions

SIF3InfraREST/SIF3REST/.classpath

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
26+
<attributes>
27+
<attribute name="maven.pomderived" value="true"/>
28+
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
29+
</attributes>
30+
</classpathentry>
31+
<classpathentry combineaccessrules="false" kind="src" path="/sif3-framework"/>
32+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
33+
<attributes>
34+
<attribute name="maven.pomderived" value="true"/>
35+
</attributes>
36+
</classpathentry>
37+
<classpathentry kind="output" path="target/classes"/>
38+
</classpath>

SIF3InfraREST/SIF3REST/.gitignore

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

SIF3InfraREST/SIF3REST/.project

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>SIF3REST</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.jdt.core.javabuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.wst.validation.validationbuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.m2e.core.maven2Builder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
31+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
32+
<nature>org.eclipse.jdt.core.javanature</nature>
33+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
34+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
35+
</natures>
36+
</projectDescription>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/main/resources=UTF-8
4+
encoding//src/test/java=UTF-8
5+
encoding//src/test/resources=UTF-8
6+
encoding/<project>=UTF-8
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
4+
org.eclipse.jdt.core.compiler.compliance=1.7
5+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
8+
org.eclipse.jdt.core.compiler.source=1.7
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
2+
<wb-module deploy-name="SIF3REST">
3+
<wb-resource deploy-path="/" source-path="/src/main/java"/>
4+
<wb-resource deploy-path="/" source-path="/src/main/resources"/>
5+
</wb-module>
6+
</project-modules>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<installed facet="jst.utility" version="1.0"/>
4+
<installed facet="java" version="1.7"/>
5+
</faceted-project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
disabled=06target
2+
eclipse.preferences.version=1

SIF3InfraREST/SIF3REST/pom.xml

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
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+
4+
<!-- ======================== -->
5+
<!-- Parent Module Definition -->
6+
<!-- ======================== -->
7+
<parent>
8+
<groupId>sif3.framework</groupId>
9+
<artifactId>sif3-framework</artifactId>
10+
<version>0.10.0-beta</version>
11+
</parent>
12+
13+
<!-- =========== -->
14+
<!-- Module Info -->
15+
<!-- =========== -->
16+
<artifactId>sif3-infra-rest</artifactId>
17+
<packaging>jar</packaging>
18+
<name>SIF3 Infrastructure REST</name>
19+
20+
<!-- =============================== -->
21+
<!-- Properties local to this module -->
22+
<!-- =============================== -->
23+
<properties>
24+
25+
<!-- Because we want the infrastructure version to be part of the final jar name we override the default jar name -->
26+
<jar.finalName>${jarName.prefix}Infra-rest-${project.version}</jar.finalName>
27+
</properties>
28+
29+
<dependencies>
30+
31+
<!-- ====================== -->
32+
<!-- Local Dependencies -->
33+
<!-- Part of parent Project -->
34+
<!-- ====================== -->
35+
<dependency>
36+
<groupId>sifau</groupId>
37+
<artifactId>sif3-au-datamodel</artifactId>
38+
</dependency>
39+
40+
<!-- ====================== -->
41+
<!-- JDBC Dependencies -->
42+
<!-- Testing classes only -->
43+
<!-- ====================== -->
44+
<dependency>
45+
<groupId>jdbc</groupId>
46+
<artifactId>mysql-jdbc</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>jdbc</groupId>
50+
<artifactId>oracle-jdbc</artifactId>
51+
</dependency>
52+
<dependency>
53+
<groupId>jdbc</groupId>
54+
<artifactId>sqlite-jdbc</artifactId>
55+
</dependency>
56+
57+
<!-- ================== -->
58+
<!-- Log4J Dependencies -->
59+
<!-- ================== -->
60+
<dependency>
61+
<groupId>log4j</groupId>
62+
<artifactId>log4j</artifactId>
63+
</dependency>
64+
65+
<!-- ================================= -->
66+
<!-- Other SIF3 Framework Dependencies -->
67+
<!-- ================================= -->
68+
<dependency>
69+
<groupId>sif3.framework</groupId>
70+
<artifactId>sif3-infra-common</artifactId>
71+
<version>${project.version}</version>
72+
</dependency>
73+
<!--
74+
<dependency>
75+
<groupId>sif3.framework</groupId>
76+
<artifactId>sif3-infra-model</artifactId>
77+
<version>${project.version}</version>
78+
</dependency>
79+
-->
80+
<dependency>
81+
<groupId>javax.servlet</groupId>
82+
<artifactId>javax.servlet-api</artifactId>
83+
<scope>provided</scope>
84+
</dependency>
85+
86+
</dependencies>
87+
88+
<build>
89+
<plugins>
90+
<!-- =============================================================== -->
91+
<!-- Test Plugin configuration. Required to turn on/off test cases. -->
92+
<!-- =============================================================== -->
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-surefire-plugin</artifactId>
96+
</plugin>
97+
</plugins>
98+
</build>
99+
100+
101+
<description>This is the top level module for the SIF3 Framework. It holds the REST specific infrastructure artifacts that will be used by developers.</description>
102+
</project>

0 commit comments

Comments
 (0)