Project

General

Profile

« Previous | Next » 

Revision 47364

Copying for java 8

View differences:

modules/uoa-hcm/trunk/deploy.info
1
{
2
  "type_source": "SVN", 
3
  "goal": "package -U -T 4C source:jar", 
4
  "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/trunk", 
5
  "deploy_repository": "dnet4-snapshots", 
6
  "version": "4", 
7
  "mail": "antleb@di.uoa.gr, kiatrop@di.uoa.gr", 
8
  "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots", 
9
  "name": "uoa-hcm"
10
}
modules/uoa-hcm/trunk/src/main/java/eu/dnetlib/enabling/hcm/app/HostingContextManagerServiceImpl.java
1
package eu.dnetlib.enabling.hcm.app;
2

  
3
import eu.dnetlib.api.enabling.HostingContextManagerService;
4
import gr.uoa.di.driver.app.DriverServiceImpl;
5

  
6
public class HostingContextManagerServiceImpl
7
		extends DriverServiceImpl implements HostingContextManagerService {
8

  
9
}
modules/uoa-hcm/trunk/src/main/resources/uoa-hcm.properties
1
#Generated by ANT
2
name=uoa-hcm
3
version=0.0.3
4
label=
modules/uoa-hcm/trunk/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.properties
1
# identity
2
services.hcm.serviceName = uoa-hcm
3

  
4
# registrator
5
services.registration.delay = 3600
modules/uoa-hcm/trunk/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<beans xmlns="http://www.springframework.org/schema/beans"
4
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
5
	xmlns:context="http://www.springframework.org/schema/context"
6
	xmlns:cxf="http://cxf.apache.org/core" 
7
	xmlns:jaxws="http://cxf.apache.org/jaxws"
8
	xmlns:p="http://www.springframework.org/schema/p"
9
	xmlns:template="http://dnetlib.eu/springbeans/template"
10
	xmlns:t="http://dnetlib.eu/springbeans/t"
11
	
12
	xsi:schemaLocation="
13
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
14
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
15
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
16
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
17
		http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd"
18
	default-autowire="byName">
19

  
20
	<!--  the service bean -->
21
	<bean id="hcmService" 
22
		class="eu.dnetlib.enabling.hcm.app.HostingContextManagerServiceImpl" 
23
		autowire="no">
24
		<property name="snManager" ref="snManager" />
25
		<property name="serviceIdentity">
26
			<bean class="eu.dnetlib.utils.ServiceIdentityFactory" factory-method="createIdentity">
27
				<constructor-arg value="${services.hcm.serviceName}" />
28
			</bean>
29
		</property>
30
	</bean>
31

  
32
	<!-- The web service bean -->
33
	<bean id="hcmWebServiceImpl"
34
		class="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebServiceImpl">
35
		<property name="service" ref="hcmService" />
36
	</bean>
37

  
38
	<!-- Service endpoint -->
39
	<jaxws:endpoint 
40
		id="hcmWebService" 
41
		implementor="#hcmWebServiceImpl"
42
		implementorClass="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebService"
43
		address="/hcmWebService"/>
44

  
45
	<template:instance name="nkua.serviceRegistrationManager"
46
		t:name="hcmServiceRegistrationManager" 
47
		t:service="hcmService" 
48
		t:endpoint="hcmWebService" />
49

  
50
	<!-- A static service locator. Used to override the dynamic one -->
51
	<bean id="hcmServiceLocator"
52
		class="gr.uoa.di.driver.util.StaticServiceLocator">
53
		<property name="service" ref="hcmService" />
54
	</bean>
55
</beans>
modules/uoa-hcm/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-SNAPSHOT</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-hcm</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.2.1-SNAPSHOT</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/trunk</developerConnection>
15
	</scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>junit</groupId>
19
			<artifactId>junit</artifactId>
20
			<version>[0.0.0,)</version>
21
			<scope>test</scope>
22
		</dependency>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>uoa-api</artifactId>
26
			<version>[1.2.0, 1.3.0-SNAPSHOT)</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>uoa-commons</artifactId>
31
			<version>[1.2.0, 1.3.0-SNAPSHOT)</version>
32
		</dependency>
33
	</dependencies>
34
</project>
modules/uoa-hcm/tags/uoa-hcm-1.0.0/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>uoa-hcm</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.jdt.core.javabuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
	</buildSpec>
14
	<natures>
15
		<nature>org.eclipse.jdt.core.javanature</nature>
16
	</natures>
17
</projectDescription>
modules/uoa-hcm/tags/uoa-hcm-1.0.0/deploy.info
1
{
2
  "type_source": "SVN", 
3
  "goal": "package -U -T 4C source:jar", 
4
  "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/trunk", 
5
  "deploy_repository": "dnet4-snapshots", 
6
  "version": "4", 
7
  "mail": "antleb@di.uoa.gr, kiatrop@di.uoa.gr", 
8
  "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots", 
9
  "name": "uoa-hcm"
10
}
modules/uoa-hcm/tags/uoa-hcm-1.0.0/src/main/java/eu/dnetlib/enabling/hcm/app/HostingContextManagerServiceImpl.java
1
package eu.dnetlib.enabling.hcm.app;
2

  
3
import eu.dnetlib.api.enabling.HostingContextManagerService;
4
import gr.uoa.di.driver.app.DriverServiceImpl;
5

  
6
public class HostingContextManagerServiceImpl
7
		extends DriverServiceImpl implements HostingContextManagerService {
8

  
9
}
modules/uoa-hcm/tags/uoa-hcm-1.0.0/src/main/resources/uoa-hcm.properties
1
#Generated by ANT
2
name=uoa-hcm
3
version=0.0.3
4
label=
modules/uoa-hcm/tags/uoa-hcm-1.0.0/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.properties
1
# identity
2
services.hcm.serviceName = uoa-hcm
3

  
4
# registrator
5
services.registration.delay = 3600
modules/uoa-hcm/tags/uoa-hcm-1.0.0/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<beans xmlns="http://www.springframework.org/schema/beans"
4
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
5
	xmlns:context="http://www.springframework.org/schema/context"
6
	xmlns:cxf="http://cxf.apache.org/core" 
7
	xmlns:jaxws="http://cxf.apache.org/jaxws"
8
	xmlns:p="http://www.springframework.org/schema/p"
9
	xmlns:template="http://dnetlib.eu/springbeans/template"
10
	xmlns:t="http://dnetlib.eu/springbeans/t"
11
	
12
	xsi:schemaLocation="
13
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
14
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
15
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
16
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
17
		http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd"
18
	default-autowire="byName">
19

  
20
	<!--  the service bean -->
21
	<bean id="hcmService" 
22
		class="eu.dnetlib.enabling.hcm.app.HostingContextManagerServiceImpl" 
23
		autowire="no">
24
		<property name="snManager" ref="snManager" />
25
		<property name="serviceIdentity">
26
			<bean class="eu.dnetlib.utils.ServiceIdentityFactory" factory-method="createIdentity">
27
				<constructor-arg value="${services.hcm.serviceName}" />
28
			</bean>
29
		</property>
30
	</bean>
31

  
32
	<!-- The web service bean -->
33
	<bean id="hcmWebServiceImpl"
34
		class="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebServiceImpl">
35
		<property name="service" ref="hcmService" />
36
	</bean>
37

  
38
	<!-- Service endpoint -->
39
	<jaxws:endpoint 
40
		id="hcmWebService" 
41
		implementor="#hcmWebServiceImpl"
42
		implementorClass="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebService"
43
		address="/hcmWebService"/>
44

  
45
	<template:instance name="nkua.serviceRegistrationManager"
46
		t:name="hcmServiceRegistrationManager" 
47
		t:service="hcmService" 
48
		t:endpoint="hcmWebService" />
49

  
50
	<!-- A static service locator. Used to override the dynamic one -->
51
	<bean id="hcmServiceLocator"
52
		class="gr.uoa.di.driver.util.StaticServiceLocator">
53
		<property name="service" ref="hcmService" />
54
	</bean>
55
</beans>
modules/uoa-hcm/tags/uoa-hcm-1.0.0/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-hcm</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.0.0</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/tags/uoa-hcm-1.0.0</developerConnection>
15
	</scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>junit</groupId>
19
			<artifactId>junit</artifactId>
20
			<version>[0.0.0,)</version>
21
			<scope>test</scope>
22
		</dependency>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>uoa-api</artifactId>
26
			<version>[1.0.0]</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>uoa-commons</artifactId>
31
			<version>[1.0.0]</version>
32
		</dependency>
33
	</dependencies>
34
</project>
modules/uoa-hcm/tags/uoa-hcm-1.1.0/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>uoa-hcm</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.jdt.core.javabuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
	</buildSpec>
14
	<natures>
15
		<nature>org.eclipse.jdt.core.javanature</nature>
16
	</natures>
17
</projectDescription>
modules/uoa-hcm/tags/uoa-hcm-1.1.0/deploy.info
1
{
2
  "type_source": "SVN", 
3
  "goal": "package -U -T 4C source:jar", 
4
  "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/trunk", 
5
  "deploy_repository": "dnet4-snapshots", 
6
  "version": "4", 
7
  "mail": "antleb@di.uoa.gr, kiatrop@di.uoa.gr", 
8
  "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots", 
9
  "name": "uoa-hcm"
10
}
modules/uoa-hcm/tags/uoa-hcm-1.1.0/src/main/java/eu/dnetlib/enabling/hcm/app/HostingContextManagerServiceImpl.java
1
package eu.dnetlib.enabling.hcm.app;
2

  
3
import eu.dnetlib.api.enabling.HostingContextManagerService;
4
import gr.uoa.di.driver.app.DriverServiceImpl;
5

  
6
public class HostingContextManagerServiceImpl
7
		extends DriverServiceImpl implements HostingContextManagerService {
8

  
9
}
modules/uoa-hcm/tags/uoa-hcm-1.1.0/src/main/resources/uoa-hcm.properties
1
#Generated by ANT
2
name=uoa-hcm
3
version=0.0.3
4
label=
modules/uoa-hcm/tags/uoa-hcm-1.1.0/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.properties
1
# identity
2
services.hcm.serviceName = uoa-hcm
3

  
4
# registrator
5
services.registration.delay = 3600
modules/uoa-hcm/tags/uoa-hcm-1.1.0/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<beans xmlns="http://www.springframework.org/schema/beans"
4
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
5
	xmlns:context="http://www.springframework.org/schema/context"
6
	xmlns:cxf="http://cxf.apache.org/core" 
7
	xmlns:jaxws="http://cxf.apache.org/jaxws"
8
	xmlns:p="http://www.springframework.org/schema/p"
9
	xmlns:template="http://dnetlib.eu/springbeans/template"
10
	xmlns:t="http://dnetlib.eu/springbeans/t"
11
	
12
	xsi:schemaLocation="
13
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
14
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
15
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
16
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
17
		http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd"
18
	default-autowire="byName">
19

  
20
	<!--  the service bean -->
21
	<bean id="hcmService" 
22
		class="eu.dnetlib.enabling.hcm.app.HostingContextManagerServiceImpl" 
23
		autowire="no">
24
		<property name="snManager" ref="snManager" />
25
		<property name="serviceIdentity">
26
			<bean class="eu.dnetlib.utils.ServiceIdentityFactory" factory-method="createIdentity">
27
				<constructor-arg value="${services.hcm.serviceName}" />
28
			</bean>
29
		</property>
30
	</bean>
31

  
32
	<!-- The web service bean -->
33
	<bean id="hcmWebServiceImpl"
34
		class="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebServiceImpl">
35
		<property name="service" ref="hcmService" />
36
	</bean>
37

  
38
	<!-- Service endpoint -->
39
	<jaxws:endpoint 
40
		id="hcmWebService" 
41
		implementor="#hcmWebServiceImpl"
42
		implementorClass="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebService"
43
		address="/hcmWebService"/>
44

  
45
	<template:instance name="nkua.serviceRegistrationManager"
46
		t:name="hcmServiceRegistrationManager" 
47
		t:service="hcmService" 
48
		t:endpoint="hcmWebService" />
49

  
50
	<!-- A static service locator. Used to override the dynamic one -->
51
	<bean id="hcmServiceLocator"
52
		class="gr.uoa.di.driver.util.StaticServiceLocator">
53
		<property name="service" ref="hcmService" />
54
	</bean>
55
</beans>
modules/uoa-hcm/tags/uoa-hcm-1.1.0/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-hcm</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.1.0</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/tags/uoa-hcm-1.1.0</developerConnection>
15
	</scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>junit</groupId>
19
			<artifactId>junit</artifactId>
20
			<version>[0.0.0,)</version>
21
			<scope>test</scope>
22
		</dependency>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>uoa-api</artifactId>
26
			<version>[1.1.0, 1.2.0)</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>uoa-commons</artifactId>
31
			<version>[1.1.0, 1.2.0)</version>
32
		</dependency>
33
	</dependencies>
34
</project>
modules/uoa-hcm/tags/uoa-hcm-1.2.0/deploy.info
1
{
2
  "type_source": "SVN", 
3
  "goal": "package -U -T 4C source:jar", 
4
  "url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/trunk", 
5
  "deploy_repository": "dnet4-snapshots", 
6
  "version": "4", 
7
  "mail": "antleb@di.uoa.gr, kiatrop@di.uoa.gr", 
8
  "deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots", 
9
  "name": "uoa-hcm"
10
}
modules/uoa-hcm/tags/uoa-hcm-1.2.0/src/main/java/eu/dnetlib/enabling/hcm/app/HostingContextManagerServiceImpl.java
1
package eu.dnetlib.enabling.hcm.app;
2

  
3
import eu.dnetlib.api.enabling.HostingContextManagerService;
4
import gr.uoa.di.driver.app.DriverServiceImpl;
5

  
6
public class HostingContextManagerServiceImpl
7
		extends DriverServiceImpl implements HostingContextManagerService {
8

  
9
}
modules/uoa-hcm/tags/uoa-hcm-1.2.0/src/main/resources/uoa-hcm.properties
1
#Generated by ANT
2
name=uoa-hcm
3
version=0.0.3
4
label=
modules/uoa-hcm/tags/uoa-hcm-1.2.0/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.properties
1
# identity
2
services.hcm.serviceName = uoa-hcm
3

  
4
# registrator
5
services.registration.delay = 3600
modules/uoa-hcm/tags/uoa-hcm-1.2.0/src/main/resources/eu/dnetlib/enabling/hcm/springContext-hcmService.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<beans xmlns="http://www.springframework.org/schema/beans"
4
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
5
	xmlns:context="http://www.springframework.org/schema/context"
6
	xmlns:cxf="http://cxf.apache.org/core" 
7
	xmlns:jaxws="http://cxf.apache.org/jaxws"
8
	xmlns:p="http://www.springframework.org/schema/p"
9
	xmlns:template="http://dnetlib.eu/springbeans/template"
10
	xmlns:t="http://dnetlib.eu/springbeans/t"
11
	
12
	xsi:schemaLocation="
13
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
14
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
15
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
16
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
17
		http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd"
18
	default-autowire="byName">
19

  
20
	<!--  the service bean -->
21
	<bean id="hcmService" 
22
		class="eu.dnetlib.enabling.hcm.app.HostingContextManagerServiceImpl" 
23
		autowire="no">
24
		<property name="snManager" ref="snManager" />
25
		<property name="serviceIdentity">
26
			<bean class="eu.dnetlib.utils.ServiceIdentityFactory" factory-method="createIdentity">
27
				<constructor-arg value="${services.hcm.serviceName}" />
28
			</bean>
29
		</property>
30
	</bean>
31

  
32
	<!-- The web service bean -->
33
	<bean id="hcmWebServiceImpl"
34
		class="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebServiceImpl">
35
		<property name="service" ref="hcmService" />
36
	</bean>
37

  
38
	<!-- Service endpoint -->
39
	<jaxws:endpoint 
40
		id="hcmWebService" 
41
		implementor="#hcmWebServiceImpl"
42
		implementorClass="eu.dnetlib.clients.enabling.hcm.ws.HostingContextManagerWebService"
43
		address="/hcmWebService"/>
44

  
45
	<template:instance name="nkua.serviceRegistrationManager"
46
		t:name="hcmServiceRegistrationManager" 
47
		t:service="hcmService" 
48
		t:endpoint="hcmWebService" />
49

  
50
	<!-- A static service locator. Used to override the dynamic one -->
51
	<bean id="hcmServiceLocator"
52
		class="gr.uoa.di.driver.util.StaticServiceLocator">
53
		<property name="service" ref="hcmService" />
54
	</bean>
55
</beans>
modules/uoa-hcm/tags/uoa-hcm-1.2.0/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-hcm</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.2.0</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-hcm/tags/uoa-hcm-1.2.0</developerConnection>
15
	</scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>junit</groupId>
19
			<artifactId>junit</artifactId>
20
			<version>[0.0.0,)</version>
21
			<scope>test</scope>
22
		</dependency>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>uoa-api</artifactId>
26
			<version>[1.2.0, 1.3.0-SNAPSHOT)</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>uoa-commons</artifactId>
31
			<version>[1.2.0, 1.3.0-SNAPSHOT)</version>
32
		</dependency>
33
	</dependencies>
34
</project>

Also available in: Unified diff