Project

General

Profile

« Previous | Next » 

Revision 32461

Added by Nikon Gasparis over 9 years ago

initial commit

View differences:

modules/uoa-validator-commons/trunk/.classpath
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.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
26
		<attributes>
27
			<attribute name="maven.pomderived" value="true"/>
28
		</attributes>
29
	</classpathentry>
30
	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
31
		<attributes>
32
			<attribute name="maven.pomderived" value="true"/>
33
			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
34
		</attributes>
35
	</classpathentry>
36
	<classpathentry kind="output" path="target/classes"/>
37
</classpath>
modules/uoa-validator-commons/trunk/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>uoa-validator</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.springframework.ide.eclipse.core.springbuilder</name>
20
			<arguments>
21
			</arguments>
22
		</buildCommand>
23
		<buildCommand>
24
			<name>org.eclipse.wst.validation.validationbuilder</name>
25
			<arguments>
26
			</arguments>
27
		</buildCommand>
28
		<buildCommand>
29
			<name>org.eclipse.m2e.core.maven2Builder</name>
30
			<arguments>
31
			</arguments>
32
		</buildCommand>
33
	</buildSpec>
34
	<natures>
35
		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
36
		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
37
		<nature>org.springframework.ide.eclipse.core.springnature</nature>
38
		<nature>org.eclipse.jdt.core.javanature</nature>
39
		<nature>org.eclipse.m2e.core.maven2Nature</nature>
40
		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
41
	</natures>
42
</projectDescription>
modules/uoa-validator-commons/trunk/pom.xml
1
<?xml version="1.0" ?>
2
<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/maven-v4_0_0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-validator-commons</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.0.0-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-validator-commons/trunk</developerConnection>
15
	</scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>eu.dnetlib</groupId>
19
			<artifactId>uoa-clients</artifactId>
20
			<version>[1.0.0]</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>eu.dnetlib</groupId>
24
			<artifactId>uoa-utils</artifactId>
25
			<version>[1.0.0]</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>eu.dnetlib</groupId>
29
			<artifactId>uoa-api</artifactId>
30
			<version>[1.0.0]</version>
31
		</dependency>
32
		<dependency>
33
			<groupId>apache</groupId>
34
			<artifactId>commons-io</artifactId>
35
			<version>[1.4,)</version>
36
		</dependency>
37
		<dependency>
38
			<groupId>apache</groupId>
39
			<artifactId>commons-cli</artifactId>
40
			<version>[1.0,)</version>
41
		</dependency>
42
		<dependency>
43
			<groupId>log4j</groupId>
44
			<artifactId>log4j</artifactId>
45
			<version>[1.2.14,1.3.0)</version>
46
		</dependency>
47
		<dependency>
48
			<groupId>com.thoughtworks.xstream</groupId>
49
			<artifactId>xstream</artifactId>
50
			<version>[0.0.0,)</version>
51
		</dependency>
52
		<dependency>
53
			<groupId>junit</groupId>
54
			<artifactId>junit</artifactId>
55
			<version>[0.0.0,)</version>
56
			<scope>test</scope>
57
		</dependency>
58
		<dependency>
59
			<groupId>org.springframework</groupId>
60
			<artifactId>spring-jdbc</artifactId>
61
			<version>${spring.version}</version>
62
		</dependency>
63
		<dependency>
64
			<groupId>org.springframework</groupId>
65
			<artifactId>spring-tx</artifactId>
66
			<version>${spring.version}</version>
67
		</dependency>
68
		<dependency>
69
			<groupId>org.apache.velocity</groupId>
70
			<artifactId>velocity</artifactId>
71
			<version>1.7</version>
72
		</dependency>
73
		<dependency>
74
			<groupId>eu.dnetlib</groupId>
75
			<artifactId>cnr-blackboard-common</artifactId>
76
			<version>[1.0.0]</version>
77
		</dependency>
78
		<dependency>
79
			<groupId>postgresql</groupId>
80
			<artifactId>postgresql</artifactId>
81
			<version>9.1-901.jdbc4</version>
82
		</dependency>
83
		<dependency>
84
			<groupId>se.kb</groupId>
85
			<artifactId>oai4j</artifactId>
86
			<version>[0.6b1,)</version>
87
		</dependency>
88
	</dependencies>
89
</project>
modules/uoa-validator-commons/trunk/.settings/org.eclipse.jdt.core.prefs
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.6
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.6
modules/uoa-validator-commons/trunk/.settings/org.eclipse.m2e.core.prefs
1
activeProfiles=
2
eclipse.preferences.version=1
3
resolveWorkspaceProjects=true
4
version=1
modules/uoa-validator-commons/trunk/.settings/org.eclipse.core.resources.prefs
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
modules/uoa-validator-commons/trunk/.settings/org.eclipse.wst.common.project.facet.core.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<faceted-project>
3
  <installed facet="java" version="1.6"/>
4
  <installed facet="jst.utility" version="1.0"/>
5
</faceted-project>
modules/uoa-validator-commons/trunk/.settings/org.eclipse.wst.validation.prefs
1
disabled=06target
2
eclipse.preferences.version=1
modules/uoa-validator-commons/trunk/.settings/org.eclipse.wst.common.component
1
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
2
    <wb-module deploy-name="uoa-validator">
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>

Also available in: Unified diff